diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/Dockerfile b/Dockerfile new file mode 100755 index 0000000..989c9ab --- /dev/null +++ b/Dockerfile @@ -0,0 +1,29 @@ +FROM mcr.microsoft.com/dotnet/sdk:7.0 + +RUN apt-get update \ + && apt-get -y upgrade \ + && apt-get -y install python3 python3-pip python3-dev ipython3 + +RUN python3 -m pip install --no-cache-dir notebook jupyterlab + +ARG NB_USER=fsdocs-user +ARG NB_UID=1000 +ENV USER ${NB_USER} +ENV NB_UID ${NB_UID} +ENV HOME /home/${NB_USER} + +RUN adduser --disabled-password \ + --gecos "Default user" \ + --uid ${NB_UID} \ + ${NB_USER} + +COPY . ${HOME} +USER root +RUN chown -R ${NB_UID} ${HOME} +USER ${NB_USER} + +ENV PATH="${PATH}:$HOME/.dotnet/tools/" + +RUN dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.410202 + +RUN dotnet-interactive jupyter install diff --git a/NuGet.config b/NuGet.config new file mode 100755 index 0000000..cf1ace5 --- /dev/null +++ b/NuGet.config @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_head.html b/_head.html new file mode 100644 index 0000000..02c1815 --- /dev/null +++ b/_head.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/confidence-intervals.fsx b/confidence-intervals.fsx new file mode 100644 index 0000000..d18a8f2 --- /dev/null +++ b/confidence-intervals.fsx @@ -0,0 +1,39 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Calculating Confidence Intervals + +Bristlecone includes functions to calculate confidence intervals based +on a profile likelihood method. Given the minimum -log likelihood, the +profile likelihood method samples the parameter space around this point. +The range sampled for each parameter is discovered at 95% and 68% +confidence based on a chi squared distribution. + +These functions are included in the `Bristlecone.Optimisation.ConfidenceInterval` module. +An example of their use is given below: + +*) +open Bristlecone +open Bristlecone.Optimisation +open Bristlecone.Data + +// // fitFn = +// fun engine dataset hypothesis result -> + +// // The function used to fit the model, which unless an +// // advanced scenario is usually Bristlecone.fit +// let fitFn = Bristlecone.fit + +// // The number of jumps to perform in parameter space +// let n = 10000 + +// let ci = ConfidenceInterval.ProfileLikelihood.profile fitFn engine dataset hypothesis n result + +// // Optionally, save the result +// let saveDir = "/some/save/dir" +// let subjectName = "some subject" +// let modelId = "some model hypothesis" +// Confidence.save saveDir subjectName modelId result.ResultId ci + diff --git a/confidence-intervals.html b/confidence-intervals.html new file mode 100644 index 0000000..e4a16f7 --- /dev/null +++ b/confidence-intervals.html @@ -0,0 +1,360 @@ + + + + + + + + + + + + + + + + + + Calculating Confidence Intervals | bristlecone + + + + + + + + + + + + +
+
+ + + Header menu logo + bristlecone + +
+
+ + + + + +
+
+ +
+
+ +

Calculating Confidence Intervals

+

Bristlecone includes functions to calculate confidence intervals based +on a profile likelihood method. Given the minimum -log likelihood, the +profile likelihood method samples the parameter space around this point. +The range sampled for each parameter is discovered at 95% and 68% +confidence based on a chi squared distribution.

+

These functions are included in the Bristlecone.Optimisation.ConfidenceInterval module. +An example of their use is given below:

+
open Bristlecone
+open Bristlecone.Optimisation
+open Bristlecone.Data
+
+// // fitFn = 
+// fun engine dataset hypothesis result ->
+
+//     // The function used to fit the model, which unless an
+//     // advanced scenario is usually Bristlecone.fit
+//     let fitFn = Bristlecone.fit
+
+//     // The number of jumps to perform in parameter space
+//     let n = 10000
+
+//     let ci = ConfidenceInterval.ProfileLikelihood.profile fitFn engine dataset hypothesis n result
+
+//     // Optionally, save the result
+//     let saveDir = "/some/save/dir"
+//     let subjectName = "some subject"
+//     let modelId = "some model hypothesis"
+//     Confidence.save saveDir subjectName modelId result.ResultId ci
+
+ +
Multiple items
module Bristlecone + +from Bristlecone

--------------------
namespace Bristlecone
+
namespace Bristlecone.Optimisation
+
namespace Bristlecone.Data
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/confidence-intervals.ipynb b/confidence-intervals.ipynb new file mode 100644 index 0000000..7c4e572 --- /dev/null +++ b/confidence-intervals.ipynb @@ -0,0 +1,112 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Calculating Confidence Intervals\n", + "\n", + "Bristlecone includes functions to calculate confidence intervals based\n", + "on a profile likelihood method. Given the minimum -log likelihood, the\n", + "profile likelihood method samples the parameter space around this point.\n", + "The range sampled for each parameter is discovered at 95% and 68%\n", + "confidence based on a chi squared distribution.\n", + "\n", + "These functions are included in the `Bristlecone.Optimisation.ConfidenceInterval` module.\n", + "An example of their use is given below:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone\n", + "open Bristlecone.Optimisation\n", + "open Bristlecone.Data\n", + "\n", + "// // fitFn = \n", + "// fun engine dataset hypothesis result -\u003e\n", + "\n", + "// // The function used to fit the model, which unless an\n", + "// // advanced scenario is usually Bristlecone.fit\n", + "// let fitFn = Bristlecone.fit\n", + "\n", + "// // The number of jumps to perform in parameter space\n", + "// let n = 10000\n", + "\n", + "// let ci = ConfidenceInterval.ProfileLikelihood.profile fitFn engine dataset hypothesis n result\n", + "\n", + "// // Optionally, save the result\n", + "// let saveDir = \"/some/save/dir\"\n", + "// let subjectName = \"some subject\"\n", + "// let modelId = \"some model hypothesis\"\n", + "// Confidence.save saveDir subjectName modelId result.ResultId ci\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/content/fsdocs-default.css b/content/fsdocs-default.css new file mode 100755 index 0000000..31d5bf7 --- /dev/null +++ b/content/fsdocs-default.css @@ -0,0 +1,1231 @@ +:root { + --monospace-font: "Fira Code", monospace; + --system-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; + --heading-font-family: var(--system-font); + + --spacing-50: 4px; + --spacing-100: 8px; + --spacing-200: 12px; + --spacing-300: 16px; + --spacing-400: 24px; + --spacing-500: 32px; + --spacing-600: 48px; + --spacing-700: 64px; + --spacing-800: 96px; + --spacing-900: 128px; + --spacing-950: 192px; + + --font-50: 12x; + --font-100: 14px; + --font-200: 16px; + --font-300: 18px; + --font-400: 20px; + --font-500: 24px; + --font-600: 30px; + --font-700: 36px; + --font-800: 48px; + --font-900: 60px; + --font-950: 72px; + + --line-height: 1.5; + --heading-line-height: 1.25; + --radius: 6px; + + --container-sm: 768px; + --container-md: 960px; + --container-lg: 1024px; + --container-xl: 1200px; + --container-xxl: 1400px; + --container-xxxl: 1800px; + --main-menu-width: 260px; + --page-menu-width: var(--main-menu-width); + --header-height: 60px; + --body-grid-template-columns: var(--main-menu-width) minmax(0, 1fr); + --body-grid-template-columns-xl: var(--main-menu-width) minmax(0, 1fr) var(--page-menu-width); + --main-menu-grid-row: 2; + --main-menu-grid-column: 1; + --main-grid-row: 2; + --main-grid-column: 2; + --dialog-width: 500px; + + /* light theme */ + --primary: #1e8bc3; + --background: #f5f5f6; + --text-color: #020202; + --text-hover: #282828; + --heading-color: #2e293a; + --code-background: #ffffff; + --code-color: #1a4b0b; + --header-background: #f9fbfc; + --header-border: #e8ecf1; + --header-link-color: var(--text-color); + --mobile-menu-background: var(--header-background); + --menu-color: var(--text-color); + --menu-item-hover-background: #eff0f1; + --menu-item-hover-color: var(--menu-color); + --doc-tip-background: #F7F7F7; + --link-color: #4871f7; + --link-hover: #91aafa; + --search-background: rgb(229, 231, 235); + --nav-category: rgb(156, 163, 175); + --scrollbar-track-background: #424242; + --scrollbar-track-border: #4A4A4A; + --scrollbar-thumb-background: #686868; + --shadow-color: hsla(0, 0%, 0%, .1); + --main-shadow-color: hsla(0, 0%, 0%, .025); + --aside-background: var(--header-background); + --blockquote-bacground-color: var(--header-background); + --blockquote-color: var(--text-color); + --on-this-page-color: var(--menu-color); + --page-menu-background-color: var(--header-background); + --page-menu-background-border-color: var(--header-border); + --page-menu-background-hover-border-color: var(--text-color); + --nav-item-border-color: var(--header-border); + --nav-item-active-border-color: var(--text-color); + --dialog-background-color: var(--header-background); + --dialog-empty-color: var(--nav-category); + --dialog-icon-color: var(--text-color); + --dialog-link-color: var(--link-color); + --dialog-link-hover-color: var(--header-background); + --dialog-link-hover-background-color: var(--link-hover); + --code-fence-border-color: transparent; + + --header-brand-text-transform: none; + + --code-strings-color: #0093A1; + --code-printf-color: #6B2FBA; + --code-escaped-color: #EA8675; + --code-identifiers-color: #6B2FBA; + --code-module-color: #009999; + --code-reference-color: #4974D1; + --code-value-color: #1B6600; + --code-interface-color: #43AEC6; + --code-typearg-color: #43AEC6; + --code-disposable-color: #43AEC6; + --code-property-color: #43AEC6; + --code-punctuation-color: #43AEC6; + --code-punctuation2-color: var(--text-color); + --code-function-color: #6B2FBA; + --code-function2-color: #6B2FBA; + --code-activepattern-color: #4ec9b0; + --code-unioncase-color: #4ec9b0; + --code-enumeration-color: #8C6C41; + --code-keywords-color: #0F54D6; + --code-comment-color: #707070; + --code-operators-color: #0F54D6; + --code-numbers-color: #009999; + --code-linenumbers-color: #80b0b0; + --code-mutable-color: #1b6600; + --code-inactive-color: #808080; + --code-preprocessor-color: #af75c1; + --code-fsioutput-color: #808080; + --code-tooltip-color: #d1d1d1; +} + +/* dark theme */ + +[data-theme=dark] { + --primary: #81cfe0; + --background: rgb(20, 21, 26); + --text-color: #F7F7F7; + --text-hover: #FFF; + --heading-color: rgb(229, 231, 235); + --code-background: #28282D; + --code-color: #f5f5f6; + --header-background: #0c1318; + --header-border: #9b9b9b; + --menu-item-hover-background: #2c2624; + --doc-tip-background: #2e293a; + --link-color: #c5eff7; + --search-background: #020202; + --nav-category: rgb(207, 211, 215); + --code-strings-color: #86b4b9; + --code-printf-color: #6B2FBA; + --code-escaped-color: #EA8675; + --code-identifiers-color: #d1b3f5; + --code-module-color: #15e1e1; + --code-reference-color: #40fddd; + --code-value-color: #ffb4e9; + --code-interface-color: #43AEC6; + --code-typearg-color: #43AEC6; + --code-disposable-color: #6dd6f1; + --code-property-color: #6acfe7; + --code-punctuation-color: #43AEC6; + --code-punctuation2-color: var(--text-color); + --code-function-color: #6B2FBA; + --code-function2-color: #cbda9d; + --code-activepattern-color: #4ec9b0; + --code-unioncase-color: #4ec9b0; + --code-enumeration-color: #8C6C41; + --code-keywords-color: #a7c2f8; + --code-comment-color: #84d16e; + --code-operators-color: #b4c6ee; + --code-numbers-color: #009999; + --code-linenumbers-color: #80b0b0; + --code-mutable-color: #1b6600; + --code-inactive-color: #808080; + --code-preprocessor-color: #af75c1; + --code-fsioutput-color: #808080; + --code-tooltip-color: #d1d1d1; +} + +/* CSS Reset, source: https://www.joshwcomeau.com/css/custom-css-reset/ */ +*, *::before, *::after { + box-sizing: border-box; +} + +* { + margin: 0; +} + +html { + overflow-y: hidden; +} + +body { + line-height: 1.5; + -webkit-font-smoothing: antialiased; +} + +picture, video, canvas, svg { + display: block; + max-width: 100%; +} + +input, button, textarea, select { + font: inherit; +} + +p, h1, h2, h3, h4, h5, h6 { + overflow-wrap: break-word; +} + +/* Main layout */ +body { + font-family: var(--system-font); + background-color: var(--background); + color: var(--text-color); + line-height: var(--line-height); + scroll-padding-top: var(--header-height); + scroll-behavior: smooth; +} + +header { + background-color: var(--header-background); + padding: var(--spacing-300); + height: var(--header-height); + display: flex; + align-items: center; + justify-content: space-between; + position: sticky; + top: 0; + z-index: 100; + box-shadow: 0 1px 1px var(--shadow-color); + + & .start { + display: flex; + align-items: center; + + & #menu-toggle { + position: relative; + height: var(--spacing-500); + width: var(--spacing-500); + border: 1px solid var(--header-border); + border-radius: var(--radius); + box-shadow: 0 1px 1px var(--shadow-color); + + & .icon { + top: 4px; + left: 4px; + width: calc(var(--spacing-500) - 4px); + height: calc(var(--spacing-500) - 4px); + position: absolute; + color: var(--header-link-color); + + &.open { + display: none; + } + } + + & input[type=checkbox] { + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + appearance: none; + cursor: pointer; + } + + & .menu { + visibility: hidden; + height: 0; + opacity: 0; + width: 100%; + transition: all 0.2s ease-in-out; + position: fixed; + top: var(--header-height); + left: 0; + background-color: var(--mobile-menu-background); + list-style: none; + padding: var(--spacing-300); + overflow-y: auto; + } + + & input:checked + .menu { + visibility: visible; + opacity: 1; + height: calc(100vh - var(--header-height)); + } + + &:has(input:checked) { + .icon.open { + display: block; + } + + .icon.closed { + display: none; + } + } + } + + > a { + display: flex; + justify-content: center; + align-items: center; + text-decoration: none; + color: var(--header-link-color); + } + + & img { + margin: 0 var(--spacing-200); + border-radius: var(--radius); + height: calc(var(--spacing-500) - 2px); + } + + & strong { + line-height: var(--spacing-500); + font-size: var(--font-200); + display: block; + text-transform: var(--header-brand-text-transform); + font-weight: 500; + } + } + + & .end { + display: flex; + align-items: center; + + & a { + display: none; + color: var(--header-link-color); + } + + & > .themeToggle, & > .search { + cursor: pointer; + height: var(--spacing-500); + align-items: center; + margin: 0 var(--spacing-100); + } + + & > .search { + display: flex; + color: var(--header-link-color); + } + } +} + +aside { + display: none; +} + +main { + height: calc(100dvh - var(--header-height)); +} + +#content { + padding: var(--spacing-300); + + > *:first-child { + margin-top: 0; + } +} + +#fsdocs-page-menu { + display: none; + padding: var(--spacing-300); + background-color: var(--page-menu-background-color); + border-left: 1px solid var(--page-menu-background-border-color); + + &:has(.empty) { + display: none; + } + + > #on-this-page { + font-size: var(--font-100); + line-height: 1.5; + color: var(--on-this-page-color); + font-weight: 500; + margin: 0 0 var(--spacing-50); + } + + & ul { + list-style: none; + padding: 0; + margin: 0; + + & li { + border-left: 1px solid var(--header-border); + margin: 0; + + &:hover, &:focus { + border-color: var(--page-menu-background-hover-border-color); + } + + & a { + color: var(--menu-color); + text-decoration: none; + padding: var(--spacing-50) var(--spacing-100); + display: block; + overflow-x: hidden; + text-overflow: ellipsis; + } + + &.level-3 { + padding-left: var(--spacing-100); + } + + &.level-4 { + padding-left: var(--spacing-300); + } + } + } +} + +/* menu items */ +.menu { + padding: 0; + + & li { + list-style: none; + margin: 0; + } + + .nav-header { + margin-top: var(--spacing-300); + text-transform: uppercase; + font-size: var(--font-200); + font-weight: 500; + color: var(--menu-color); + } +} + +.nav-header:first-child { + margin-top: 0; +} + +.nav-item { + border-left: 1px solid var(--nav-item-border-color); + + & a { + color: var(--menu-color); + text-decoration: none; + font-size: var(--font-200); + padding: var(--spacing-100); + display: block; + overflow-x: hidden; + text-overflow: ellipsis; + + &:hover { + background-color: var(--menu-item-hover-background); + color: var(--menu-item-hover-color); + } + } + + &:hover, &.active { + border-color: var(--nav-item-active-border-color); + } + + &.active { + font-weight: 600; + } +} + +@media screen and (min-width: 768px) { + #menu-toggle { + display: none; + } + + body { + display: grid; + grid-template-rows: var(--header-height) minmax(0, 1fr); + grid-template-columns:var(--body-grid-template-columns); + gap: 0; + } + + header { + border-bottom: 1px solid var(--header-border); + grid-row: 1; + grid-column: span 2; + box-shadow: none; + + & .end { + > a { + display: flex; + align-items: center; + text-decoration: none; + + &:hover { + color: var(--link-hover); + } + } + } + } + + aside, main { + height: calc(100vh - var(--header-height)); + } + + aside { + position: sticky; + top: var(--header-height); + } + + #fsdocs-main-menu { + display: block; + padding: var(--spacing-300) var(--spacing-500); + background-color: var(--aside-background); + width: var(--main-menu-width); + border-right: 1px solid var(--header-border); + grid-row: var(--main-menu-grid-row); + grid-column: var(--main-menu-grid-column); + overflow-y: auto; + } + + main { + grid-row: var(--main-grid-row); + grid-column: var(--main-grid-column); + box-shadow: inset 1px 1px var(--main-shadow-color); + border-radius: 0; + } + + #content { + padding-left: var(--spacing-300); + padding-right: var(--spacing-300); + } +} + +@media screen and (min-width: 768px) { + #content { + max-width: calc(100vw - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + margin: 0 auto; + } +} + +@media screen and (min-width: 960px) { + #content { + max-width: calc(var(--container-md) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } +} + +@media screen and (min-width: 1024px) { + #content { + max-width: calc(var(--container-lg) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } +} + +@media screen and (min-width: 1200px) { + body { + grid-template-columns: var(--body-grid-template-columns-xl); + + &.api-docs { + grid-template-columns: var(--body-grid-template-columns); + + #content { + max-width: calc(var(--container-xl) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } + + #fsdocs-page-menu { + display: none; + } + } + } + + header { + grid-column: span 3; + } + + #fsdocs-page-menu { + grid-column: 3; + display: block; + } + + #content { + max-width: calc(var(--container-xl) - var(--main-menu-width) - var(--page-menu-width) - var(--spacing-300) - var(--spacing-300)); + } +} + +@media screen and (min-width: 1400px) { + body { + &.api-docs, &:has(#fsdocs-page-menu .empty) { + #content { + max-width: calc(var(--container-xxl) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } + } + } + + #content { + max-width: calc(var(--container-xxl) - var(--main-menu-width) - var(--page-menu-width) - var(--spacing-300) - var(--spacing-300)); + } +} + +@media screen and (min-width: 1800px) { + body { + &.api-docs, &:has(#fsdocs-page-menu .empty) { + #content { + max-width: calc(var(--container-xxxl) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } + } + } + + #content { + max-width: calc(var(--container-xxxl) - var(--main-menu-width) - var(--page-menu-width) - var(--spacing-300) - var(--spacing-300)); + } +} + +/* Headings */ +h1, h2, h3, h4, h5, h6 { + font-family: var(--heading-font-family); +} + +h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { + color: var(--heading-color); + text-decoration: none; +} + +h1 { + font-size: var(--font-600); + line-height: var(--heading-line-height); + margin-bottom: var(--spacing-400); + margin-top: var(--spacing-50); +} + +h2 { + font-size: var(--font-500); + line-height: var(--heading-line-height); + margin-top: var(--spacing-400); + margin-bottom: var(--spacing-300); +} + +h3 { + font-size: var(--font-400); + line-height: var(--heading-line-height); + margin-top: var(--spacing-300); + margin-bottom: var(--spacing-200); +} + +h4 { + font-weight: bold; +} + +h4, h5, h6 { + font-size: var(--font-300); + margin-top: var(--spacing-200); + margin-bottom: var(--spacing-200); +} + +@media screen and (min-width: 768px) { + h1 { + font-size: var(--font-800); + margin-bottom: var(--spacing-400); + line-height: var(--heading-line-height); + } + + h2 { + font-size: var(--font-700); + margin-top: var(--spacing-500); + margin-bottom: var(--spacing-400); + } + + h3 { + font-size: var(--font-600); + margin-top: var(--spacing-500); + margin-bottom: var(--spacing-200); + } + + h4 { + font-size: var(--font-500); + } + + h4, h5, h6 { + margin-top: var(--spacing-300); + } +} + +/* Common items */ +a { + color: var(--link-color); +} + +p { + line-height: 1.8; + margin-top: var(--spacing-300); +} + +ol, ul { + padding-left: var(--spacing-400); +} + +ol li, ul li { + margin: var(--spacing-100) 0; +} + +img { + max-width: 100%; +} + +#content > table { + margin: var(--spacing-300) 0; +} + +blockquote { + border-left: var(--spacing-50) solid var(--primary); + margin: var(--spacing-200) 0; + margin-left: var(--spacing-200); + padding: var(--spacing-100) var(--spacing-300); + background-color: var(--blockquote-bacground-color); + color: var(--blockquote-color); + + > p { + margin: 0; + padding: 0; + } +} + +@media screen and (min-width: 768px) { + blockquote { + margin-left: var(--spacing-400); + } +} + +/* Code snippets */ + +/* reset browser style */ +pre { + margin: 0; + padding: 0; +} + +code, table.pre, pre { + background-color: var(--code-background); + color: var(--code-color); + font-family: var(--monospace-font); + font-variant-ligatures: none; + font-size: var(--font-200); + -webkit-text-size-adjust: 100%; +} + +table.pre, #content > pre.fssnip { + border: 1px solid var(--code-fence-border-color); +} + +table.pre, pre.fssnip.highlighted { + margin: var(--spacing-300) 0; + padding: var(--spacing-200); +} + +table.pre .snippet pre.fssnip { + padding: 0; + margin: 0; +} + +p > code, li > code { + padding: 2px var(--spacing-50); +} + +table.pre, pre > code { + display: block; +} + +pre.fssnip > code { + max-width: initial; + margin-bottom: initial; +} + +/* avoid problems with transparent background colors */ +pre.fssnip.highlighted > code, table.pre .fssnip, table.pre .fssnip code { + background-color: transparent; +} + +/* Custom scrollbar styling */ +body, aside, #menu-toggle .menu, table.pre, code, +.fsdocs-entity-xmldoc > div > pre, div.fsdocs-summary > pre, +dialog ul, div.fsdocs-tip, .fsdocs-xmldoc > pre { + overflow-x: auto; + max-width: 100%; + + &::-webkit-scrollbar { + height: var(--spacing-100); + width: var(--spacing-100); + } + + &::-webkit-scrollbar-track { + background-color: var(--scrollbar-track-background); + border: 1px solid var(--scrollbar-track-border); + } + + &::-webkit-scrollbar-thumb { + background-color: var(--scrollbar-thumb-background); + } +} + +body, aside, #menu-toggle .menu, table.pre, code, +.fsdocs-entity-xmldoc > div > pre, div.fsdocs-summary > pre, +dialog ul, div.fsdocs-tip, .fsdocs-xmldoc > pre { + @media screen and (min-width: 768px) { + &::-webkit-scrollbar { + height: var(--spacing-200); + width: var(--spacing-300); + } + } +} + +table.pre, code, pre.fssnip { + border-radius: var(--radius); +} + +/* Code coloring */ +.param-name, +.return-name, +.param { + font-weight: 900; + font-size: var(--font-100); + font-family: var(--monospace-font); + font-variant-ligatures: none; +} + +.fssnip { + /* strings --- and stlyes for other string related formats */ + + & span.s { + color: var(--code-strings-color); + } + + /* printf formatters */ + + & span.pf { + color: var(--code-printf-color); + } + + /* escaped chars */ + + & span.e { + color: var(--code-escaped-color); + } + + /* identifiers --- and styles for more specific identifier types */ + + & span.id { + color: var(--code-identifiers-color);; + } + + /* module */ + + & span.m { + color: var(--code-module-color); + } + + /* reference type */ + + & span.rt { + color: var(--code-reference-color); + } + + /* value type */ + + & span.vt { + color: var(--code-value-color); + } + + /* interface */ + + & span.if { + color: var(--code-interface-color); + } + + /* type argument */ + + & span.ta { + color: var(--code-typearg-color); + } + + /* disposable */ + + & span.d { + color: var(--code-disposable-color); + } + + /* property */ + + & span.prop { + color: var(--code-property-color); + } + + /* punctuation */ + + & span.p { + color: var(--code-punctuation-color); + } + + & span.pn { + color: var(--code-punctuation2-color); + } + + /* function */ + + & span.f { + color: var(--code-function-color); + } + + & span.fn { + color: var(--code-function2-color); + } + + /* active pattern */ + + & span.pat { + color: var(--code-activepattern-color); + } + + /* union case */ + + & span.u { + color: var(--code-unioncase-color); + } + + /* enumeration */ + + & span.e { + color: var(--code-enumeration-color); + } + + /* keywords */ + + & span.k { + color: var(--code-keywords-color); + } + + /* comment */ + + & span.c { + color: var(--code-comment-color); + font-weight: 400; + font-style: italic; + } + + /* operators */ + + & span.o { + color: var(--code-operators-color); + } + + /* numbers */ + + & span.n { + color: var(--code-numbers-color); + } + + /* line number */ + + & span.l { + color: var(--code-linenumbers-color); + } + + /* mutable var or ref cell */ + + & span.v { + color: var(--code-mutable-color); + font-weight: bold; + } + + /* inactive code */ + + & span.inactive { + color: var(--code-inactive-color); + } + + /* preprocessor */ + + & span.prep { + color: var(--code-preprocessor-color); + } + + /* fsi output */ + + & span.fsi { + color: var(--code-fsioutput-color); + } +} + +/* tooltips */ +div.fsdocs-tip { + z-index: 1000; + display: none; + background-color: var(--doc-tip-background); + border-radius: var(--radius); + border: 1px solid var(--header-border); + padding: var(--spacing-200); + font-family: var(--monospace-font); + font-variant-ligatures: none; + color: var(--code-color); + box-shadow: 0 1px 1px var(--shadow-color); + + & code { + color: var(--code-color); + } +} + +span[onmouseout] { + cursor: pointer; +} + +/* API docs */ +#content > div > h2:first-child { + margin-top: 0; +} + +.fsdocs-xmldoc { + & pre { + overflow-x: auto; + } +} + +.table { + width: 100%; + table-layout: fixed; + + & thead tr td { + font-weight: bold; + padding: var(--spacing-400) 0; + } + + & tbody td { + border-top: 1px solid var(--header-border); + padding: var(--spacing-300) 0; + padding-right: var(--spacing-300); + + &:first-child a { + overflow-x: hidden; + text-overflow: ellipsis; + width: 100%; + display: block; + } + + &:last-child { + padding-right: 0; + } + } + + & thead tr td:first-child, & td.fsdocs-entity-name, & td.fsdocs-member-usage { + width: 25%; + + & p { + margin: 0; + } + } + + .fsdocs-entity-xmldoc { + > div { + display: flex; + flex-direction: row-reverse; + justify-content: flex-start; + align-items: center; + + & p.fsdocs-summary { + margin: 0; + flex-grow: 1; + } + + & pre { + margin-bottom: var(--spacing-200); + padding: var(--spacing-50); + flex-grow: 1; + overflow-x: auto; + } + } + } + + .fsdocs-member-xmldoc { + & summary { + list-style: none; + + > .fsdocs-summary { + display: flex; + align-items: center; + flex-direction: row-reverse; + + & p.fsdocs-summary { + margin: 0; + flex-grow: 1; + } + + & pre { + margin-bottom: var(--spacing-200); + padding: var(--spacing-50); + flex-grow: 1; + overflow-x: auto; + } + } + + &::after { + content: '▶'; + cursor: pointer; + } + } + + & details[open] summary { + margin-bottom: var(--spacing-200); + } + + & details[open] summary::after { + content: "▼"; + } + + .fsdocs-returns, .fsdocs-params { + margin: var(--spacing-200) 0; + + &:first-child { + margin-top: 0; + } + + &:last-child { + margin-bottom: 0; + } + } + + .fsdocs-return-name, .fsdocs-param-name { + font-weight: 500; + } + + /* hide the browser mark and display one after the summary */ + + & ::marker { + display: none; + } + + > div.fsdocs-summary { + display: flex; + flex-direction: row-reverse; + justify-content: space-between; + align-items: center; + + > p { + margin: 0; + } + } + } +} + +.fsdocs-source-link { + display: none; + padding: 0 var(--spacing-100); + color: var(--text-color); + cursor: pointer; + height: var(--font-500); + width: var(--font-500); + margin: 0 var(--spacing-50); + + &:hover { + color: var(--primary); + } +} + +@media screen and (min-width: 768px) { + .fsdocs-source-link { + display: block; + } +} + +/* Search */ +::backdrop { + background-color: #020202; + opacity: 0.5; +} + +dialog { + background-color: var(--dialog-background-color); + margin: var(--spacing-700) auto; + padding: var(--spacing-100); + border: none; + opacity: 0; + visibility: hidden; + transition: all 0.2s ease-in-out; + border-radius: var(--radius); + width: var(--dialog-width); + + &[open] { + opacity: 1; + visibility: visible; + } + + & input[type=search] { + margin: 0; + display: block; + width: 100%; + padding: var(--spacing-200); + outline: 1px solid var(--primary); + border-radius: var(--radius); + border: none; + + &::placeholder { + font-size: var(--font-400); + } + } + + .empty { + color: var(--dialog-empty-color); + text-align: center; + font-size: var(--font-100); + margin: var(--spacing-100); + margin-bottom: 0; + } + + & ul { + overflow-y: auto; + max-height: calc(50vh - var(--spacing-700) - var(--spacing-700)); + list-style: none; + padding: 0; + + & li { + margin: 0; + border-bottom: 1px solid var(--header-border); + + &:hover { + & a, & a iconify-icon { + background-color: var(--dialog-link-hover-background-color); + color: var(--dialog-link-hover-color); + } + } + + & a { + display: flex; + padding: var(--spacing-300); + overflow-x: hidden; + color: var(--dialog-link-color); + + & iconify-icon { + color: var(--dialog-icon-color); + width: 24px; + margin-right: var(--spacing-200); + } + } + } + } +} + +/* Variables don't seem to work on ::backdrop */ +[data-theme=dark] { + ::backdrop { + opacity: 0.75; + } +} \ No newline at end of file diff --git a/content/fsdocs-search.js b/content/fsdocs-search.js new file mode 100755 index 0000000..9e4c21d --- /dev/null +++ b/content/fsdocs-search.js @@ -0,0 +1,126 @@ +import Fuse from "https://esm.sh/fuse.js@7.0.0"; + +const searchBtn = document.querySelector("#search-btn"); + +function hideSearchBtn() { + // Hide search icon if we can't search in the first place. + searchBtn.style.display = 'none'; +} + +function debounce(mainFunction, delay) { + // Declare a variable called 'timer' to store the timer ID + let timer; + + // Return an anonymous function that takes in any number of arguments + return function (...args) { + // Clear the previous timer to prevent the execution of 'mainFunction' + clearTimeout(timer); + + // Set a new timer that will execute 'mainFunction' after the specified delay + timer = setTimeout(() => { + mainFunction(...args); + }, delay); + }; +} + +const root = document.documentElement.getAttribute("data-root"); +if (root && searchBtn) { + let fuse = null; + const searchIndexUrl = `${root}/index.json`; + fetch(searchIndexUrl, {}) + .then(response => response.json()) + .then(index => { + fuse = new Fuse(index, { + includeScore: true, + keys: ['uri', 'title', 'content', 'headings'], + includeMatches: true, + limit: 20, + ignoreLocation: true, + threshold: 0.6, + minMatchCharLength: 2, + ignoreFieldNorm: true, + shouldSort: true + }); + }) + .catch(() => { + hideSearchBtn(); + }) + + const searchDialog = document.querySelector("dialog"); + const empty = document.querySelector("dialog .empty"); + const resultsElement = document.querySelector("dialog ul"); + const searchBox = document.querySelector("dialog input[type=search]"); + + searchBtn.addEventListener("click", () => { + searchDialog.showModal(); + }) + + searchDialog.addEventListener("click", ev => { + if (ev.target.tagName === "DIALOG") { + searchBox.value = ''; + searchDialog.close() + } + }) + + function searchAux(searchTerm) { + if (!fuse) return; + + const results = fuse.search(searchTerm); + if (results.length === 0) { + clearResults(); + empty.textContent = "No results were found"; + } else { + if (location.hostname === 'localhost'){ + console.table(results); + } + + empty.style.display = 'none'; + const newResultNodes = + results + .map(result => { + const item = result.item; + const li = document.createElement("li"); + const a = document.createElement("a"); + a.setAttribute("href", item.uri); + const icon = document.createElement("iconify-icon"); + icon.setAttribute("width", "24"); + icon.setAttribute("height", "24"); + icon.setAttribute("icon", item.type === "content" ? "iconoir:page" : "bxs:file-doc") + a.append(icon, item.title); + li.appendChild(a); + return li; + }); + resultsElement.replaceChildren(...newResultNodes); + } + } + + const search = debounce(searchAux, 250); + + function clearResults() { + empty.style.display = 'block'; + resultsElement.replaceChildren(); + } + + searchBox.addEventListener('keyup', ev => { + ev.stopPropagation(); + const searchTerm = ev.target.value; + if (!searchTerm) { + empty.textContent = "Type something to start searching."; + clearResults(); + } else { + search(searchTerm); + } + }); + + window.addEventListener('keyup', ev => { + if (ev.key === 'Escape' && searchDialog.open) { + searchDialog.close(); + } + + if (ev.key === '/' && !searchDialog.open) { + searchDialog.showModal(); + } + }) +} else { + hideSearchBtn(); +} diff --git a/content/fsdocs-theme-set-dark.js b/content/fsdocs-theme-set-dark.js new file mode 100755 index 0000000..b6eeaba --- /dev/null +++ b/content/fsdocs-theme-set-dark.js @@ -0,0 +1,5 @@ +const prefersDark = window.matchMedia("@media (prefers-color-scheme: dark)").matches; +let currentTheme = localStorage.getItem('theme') ?? (prefersDark ? 'dark' : 'light'); +if (currentTheme === 'dark') { + window.document.documentElement.setAttribute("data-theme", 'dark'); +} diff --git a/content/fsdocs-theme-toggle.js b/content/fsdocs-theme-toggle.js new file mode 100755 index 0000000..5e32f9e --- /dev/null +++ b/content/fsdocs-theme-toggle.js @@ -0,0 +1,38 @@ +import {LitElement, html, css} from 'https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js'; + +const prefersDark = window.matchMedia("@media (prefers-color-scheme: dark)").matches; +let currentTheme = localStorage.getItem('theme') ?? (prefersDark ? 'dark' : 'light'); + +export class ThemeToggle extends LitElement { + static properties = { + _theme: {state: true, type: String}, + }; + + constructor() { + super(); + this._theme = currentTheme; + } + + static styles = css` + :host { + cursor: pointer; + box-sizing: border-box; + transform: translateY(3px); + } + `; + + changeTheme() { + this._theme = this._theme === 'light' ? 'dark' : 'light'; + localStorage.setItem('theme', this._theme); + window.document.documentElement.setAttribute("data-theme", this._theme); + } + + render() { + const icon = this._theme === 'light' ? 'basil:moon-solid' : 'basil:sun-solid'; + return html` + + `; + } +} + +customElements.define('fsdocs-theme-toggle', ThemeToggle); diff --git a/content/fsdocs-theme.css b/content/fsdocs-theme.css new file mode 100755 index 0000000..cd0e6a9 --- /dev/null +++ b/content/fsdocs-theme.css @@ -0,0 +1 @@ +/* Override any variables here */ \ No newline at end of file diff --git a/content/fsdocs-theme.js b/content/fsdocs-theme.js new file mode 100755 index 0000000..9ea6b3f --- /dev/null +++ b/content/fsdocs-theme.js @@ -0,0 +1,28 @@ +// Automatically scroll to the active aside menu item. +const mainMenu = document.getElementById('fsdocs-main-menu'); +function scrollToActiveItem(activeItem) { + const halfMainMenuHeight = mainMenu.offsetHeight / 2 + if(activeItem.offsetTop > halfMainMenuHeight){ + mainMenu.scrollTop = (activeItem.offsetTop - halfMainMenuHeight) - (activeItem.offsetHeight / 2); + } +} + +const activeItem = document.querySelector("aside .nav-item.active"); +if (activeItem && mainMenu) { + scrollToActiveItem(activeItem); +} + +if(location.hash) { + const header = document.querySelector(`a[href='${location.hash}']`); + header.scrollIntoView({ behavior: 'instant'}); +} + +if(location.pathname.startsWith('/reference/')) { + // Scroll to API Reference header + const navHeaders = document.querySelectorAll(".nav-header"); + for (const navHeader of navHeaders) { + if (navHeader.textContent && navHeader.textContent.trim() === 'API Reference') { + scrollToActiveItem(navHeader); + } + } +} \ No newline at end of file diff --git a/content/fsdocs-tips.js b/content/fsdocs-tips.js new file mode 100755 index 0000000..787e183 --- /dev/null +++ b/content/fsdocs-tips.js @@ -0,0 +1,59 @@ +let currentTip = null; +let currentTipElement = null; + +function hideTip(evt, name, unique) { + const el = document.getElementById(name); + el.style.display = "none"; + currentTip = null; +} + +function hideUsingEsc(e) { + hideTip(e, currentTipElement, currentTip); +} + +function showTip(evt, name, unique, owner) { + document.onkeydown = hideUsingEsc; + if (currentTip === unique) return; + currentTip = unique; + currentTipElement = name; + + const offset = 20; + let x = evt.clientX; + let y = evt.clientY + offset; + + const el = document.getElementById(name); + el.style.position = "absolute"; + el.style.display = "block"; + el.style.left = `${x}px`; + el.style.top = `${y}px`; + const maxWidth = document.documentElement.clientWidth - x - 16; + el.style.maxWidth = `${maxWidth}px`; + + const rect = el.getBoundingClientRect(); + // Move tooltip if it is out of sight + if(rect.bottom > window.innerHeight) { + y = y - el.clientHeight - offset; + el.style.top = `${y}px`; + } + + if (rect.right > window.innerWidth) { + x = y - el.clientWidth - offset; + el.style.left = `${x}px`; + const maxWidth = document.documentElement.clientWidth - x - 16; + el.style.maxWidth = `${maxWidth}px`; + } +} + +function Clipboard_CopyTo(value) { + const tempInput = document.createElement("input"); + tempInput.value = value; + document.body.appendChild(tempInput); + tempInput.select(); + document.execCommand("copy"); + document.body.removeChild(tempInput); +} + +window.showTip = showTip; +window.hideTip = hideTip; +// Used by API documentation +window.Clipboard_CopyTo = Clipboard_CopyTo; \ No newline at end of file diff --git a/content/img/github-pages-settings.png b/content/img/github-pages-settings.png new file mode 100755 index 0000000..a765770 Binary files /dev/null and b/content/img/github-pages-settings.png differ diff --git a/data.fsx b/data.fsx new file mode 100644 index 0000000..71fff61 --- /dev/null +++ b/data.fsx @@ -0,0 +1,46 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Loading and Saving Data + +The `Bristlecone.Data` namespace includes methods for saving Bristlecone +results and diagnostics, and loading saved results for further analysis +at a later date. + +### Estimation Results + +Saving and loading estimation results is conducted as follows: + +*) +open Bristlecone +open Bristlecone.Data + +let resultsDirectory = "/some/data/dir" +let thinTraceBy = 1000 // Only trace every n iterations to save disk space +let subject = "Mosquito population" // The name of the 'subject' of analysis +let modelName = "Logistic growth" + +/// Output three files: the maximum likelihood estimate, +/// a trace of the optimisation process, and the estimated vs +/// observed time series. +fun result -> + EstimationResult.saveAll resultsDirectory subject modelName thinTraceBy result +(** +### Other statistics with save functions + +`Bristlecone.Data` includes methods for saving results from the following +statistical functions that Bristlecone performs: + +*) +// Save confidence intervals: +Bristlecone.Data.Confidence.save + +// Save convergence statistics based on multiple 'chains' +// of analysis on the same subject and model: +Bristlecone.Data.Convergence.save + +// Save Akaike weights calculated for model selection: +Bristlecone.Data.ModelSelection.save + diff --git a/data.html b/data.html new file mode 100644 index 0000000..38866e2 --- /dev/null +++ b/data.html @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + Loading and Saving Data | bristlecone + + + + + + + + + + + + +
+
+ + + Header menu logo + bristlecone + +
+
+ + + + + +
+
+ +
+
+ +

Loading and Saving Data

+

The Bristlecone.Data namespace includes methods for saving Bristlecone +results and diagnostics, and loading saved results for further analysis +at a later date.

+

Estimation Results

+

Saving and loading estimation results is conducted as follows:

+
open Bristlecone
+open Bristlecone.Data
+
+let resultsDirectory = "/some/data/dir"
+let thinTraceBy = 1000 // Only trace every n iterations to save disk space
+let subject = "Mosquito population" // The name of the 'subject' of analysis
+let modelName = "Logistic growth"
+
+/// Output three files: the maximum likelihood estimate,
+/// a trace of the optimisation process, and the estimated vs
+/// observed time series.
+fun result ->
+    EstimationResult.saveAll resultsDirectory subject modelName thinTraceBy result
+
+

Other statistics with save functions

+

Bristlecone.Data includes methods for saving results from the following +statistical functions that Bristlecone performs:

+
// Save confidence intervals:
+Bristlecone.Data.Confidence.save
+
+// Save convergence statistics based on multiple 'chains'
+// of analysis on the same subject and model:
+Bristlecone.Data.Convergence.save
+
+// Save Akaike weights calculated for model selection:
+Bristlecone.Data.ModelSelection.save
+
+ +
Multiple items
module Bristlecone + +from Bristlecone

--------------------
namespace Bristlecone
+
namespace Bristlecone.Data
+
val resultsDirectory: string
+
val thinTraceBy: int
+
val subject: string
+
val modelName: string
+
val result: ModelSystem.EstimationResult
+
module EstimationResult + +from Bristlecone.Data
+
val saveAll: directory: string -> subject: string -> modelId: string -> thinTraceBy: int -> result: ModelSystem.EstimationResult -> unit
<summary> + Save the Maximum Likelihood Estimate, trace of the optimisation + procedure, and time-series. +</summary>
+
module Confidence + +from Bristlecone.Data
+
val save: directory: string -> subject: string -> modelId: string -> runId: System.Guid -> result: CodedMap<Optimisation.ConfidenceInterval.ConfidenceInterval> -> unit
+
module Convergence + +from Bristlecone.Data
+
val save: directory: string -> result: Diagnostics.Convergence.ConvergenceStatistic seq seq -> unit
+
module ModelSelection + +from Bristlecone.Data
+
val save: directory: string -> result: (string * string * ModelSystem.EstimationResult * ModelSelection.Akaike.AkaikeWeight) seq -> unit
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/data.ipynb b/data.ipynb new file mode 100644 index 0000000..e0ce8f3 --- /dev/null +++ b/data.ipynb @@ -0,0 +1,140 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Loading and Saving Data\n", + "\n", + "The `Bristlecone.Data` namespace includes methods for saving Bristlecone\n", + "results and diagnostics, and loading saved results for further analysis\n", + "at a later date.\n", + "\n", + "### Estimation Results\n", + "\n", + "Saving and loading estimation results is conducted as follows:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone\n", + "open Bristlecone.Data\n", + "\n", + "let resultsDirectory = \"/some/data/dir\"\n", + "let thinTraceBy = 1000 // Only trace every n iterations to save disk space\n", + "let subject = \"Mosquito population\" // The name of the \u0027subject\u0027 of analysis\n", + "let modelName = \"Logistic growth\"\n", + "\n", + "/// Output three files: the maximum likelihood estimate,\n", + "/// a trace of the optimisation process, and the estimated vs\n", + "/// observed time series.\n", + "fun result -\u003e\n", + " EstimationResult.saveAll resultsDirectory subject modelName thinTraceBy result\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Other statistics with save functions\n", + "\n", + "`Bristlecone.Data` includes methods for saving results from the following\n", + "statistical functions that Bristlecone performs:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "// Save confidence intervals:\n", + "Bristlecone.Data.Confidence.save\n", + "\n", + "// Save convergence statistics based on multiple \u0027chains\u0027\n", + "// of analysis on the same subject and model:\n", + "Bristlecone.Data.Convergence.save\n", + "\n", + "// Save Akaike weights calculated for model selection:\n", + "Bristlecone.Data.ModelSelection.save\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/dendro.fsx b/dendro.fsx new file mode 100644 index 0000000..daf51f1 --- /dev/null +++ b/dendro.fsx @@ -0,0 +1,21 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Bristlecone + +Full documentation is forthcoming. + +
+
+
+
+ The Bristlecone.Dendro library can be installed from NuGet: +
$ dotnet add package Bristlecone.Dendro
+
+
+
+
+*) + diff --git a/dendro.html b/dendro.html new file mode 100644 index 0000000..2b2f671 --- /dev/null +++ b/dendro.html @@ -0,0 +1,337 @@ + + + + + + + + + + + + + + + + + + Dendroecology | bristlecone + + + + + + + + + + + + +
+
+ + + Header menu logo + bristlecone + +
+
+ + + + + +
+
+ +
+
+ +

Bristlecone

+

Full documentation is forthcoming.

+
+
+
+
+ The Bristlecone.Dendro library can be installed from NuGet: +
$ dotnet add package Bristlecone.Dendro
+
+
+
+
+ + +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/dendro.ipynb b/dendro.ipynb new file mode 100644 index 0000000..adcc859 --- /dev/null +++ b/dendro.ipynb @@ -0,0 +1,94 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Bristlecone\n", + "\n", + "Full documentation is forthcoming.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "\u003cdiv class=\"row\"\u003e\n", + " \u003cdiv class=\"span1\"\u003e\u003c/div\u003e\n", + " \u003cdiv class=\"span6\"\u003e\n", + " \u003cdiv class=\"well well-small\" id=\"nuget\"\u003e\n", + " The Bristlecone.Dendro library can be \u003ca href=\"https://nuget.org/packages/Bristlecone\"\u003einstalled from NuGet\u003c/a\u003e:\n", + " \u003cpre\u003e$ dotnet add package Bristlecone.Dendro\u003c/pre\u003e\n", + " \u003c/div\u003e\n", + " \u003c/div\u003e\n", + " \u003cdiv class=\"span1\"\u003e\u003c/div\u003e\n", + "\u003c/div\u003e\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/diagnostics.fsx b/diagnostics.fsx new file mode 100644 index 0000000..0f77dac --- /dev/null +++ b/diagnostics.fsx @@ -0,0 +1,74 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Diagnostics + +Diagnostic statistics are essential to ensure that the model-fitting +and model-selection results are valid and complete. + +### Convergence Statistics + +For Monte-Carlo based optimisation techniques (such as the random walk +MCMC or the Filzbach-style MCMC) convergence statistics are useful to +assess whether multiple independent **chains** have identified the same +minimum -log likelihood in parameter space, which may be the global minimum. + +Bristlecone includes the Gelman-Rubin convergence statistic (Rhat), which +can be calculated on a per-parameter basis. + +*) +open Bristlecone +open Bristlecone.Diagnostics +open Bristlecone.Data + +let saveDirectory = "/some/save/dir" + +fun listOfResults -> + + // Calculate Gelman-Rubin statistic for all parameters + // across multiple model runs + let stat = Convergence.gelmanRubinAll 1000 listOfResults + + // Save results to a single file + Convergence.save saveDirectory stat +(** +### Logging individual model components + +Sometimes it is helpful for diagnostic or visualisation purposes to +see the values of individual parts of a mathematical model during +computation, or at the minimum -log likelihood. + +Bristlecone includes the ability to log out the values of individual +model components through time. An worked example is given below of how to +obtain computed values across the time-series for components within +a model system. First, you must set up a model that has a parameter +of the `IComponentLogger)` type: + +[ NB TODO: This function must be refactored to work with the new Bristlecone Language ]() + +*) +// open Bristlecone +// open Bristlecone.Language +// open Bristlecone.Diagnostics.ModelComponents + +// let hypothesis (cLog:IComponentLogger) = + +// let ``dN/dt`` = +// Parameter "r" * This * cLog.StoreValue "log this thing" (Constant 1. - (This / Parameter "K")) + +// Model.empty +// |> Model.addEquation "N" ``dN/dt`` +// |> Model.estimateParameter "r" noConstraints 0.10 5.00 +// |> Model.estimateParameter "K" noConstraints 50.0 150. +// |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ "N" ]) +// |> Model.compile + + +// fun engine singleResult -> +// // A wrapper around the Bristlecone.fit function +// let fitFn ts m e = Bristlecone.fit e (Optimisation.EndConditions.afterIteration 1) ts m +// let logs = ModelComponents.calculateComponents fitFn engine singleResult +// () + diff --git a/diagnostics.html b/diagnostics.html new file mode 100644 index 0000000..978fc15 --- /dev/null +++ b/diagnostics.html @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + Diagnostics | bristlecone + + + + + + + + + + + + +
+ +
+ + + + + +
+
+ +
+
+ +

Diagnostics

+

Diagnostic statistics are essential to ensure that the model-fitting +and model-selection results are valid and complete.

+

Convergence Statistics

+

For Monte-Carlo based optimisation techniques (such as the random walk +MCMC or the Filzbach-style MCMC) convergence statistics are useful to +assess whether multiple independent chains have identified the same +minimum -log likelihood in parameter space, which may be the global minimum.

+

Bristlecone includes the Gelman-Rubin convergence statistic (Rhat), which +can be calculated on a per-parameter basis.

+
open Bristlecone
+open Bristlecone.Diagnostics
+open Bristlecone.Data
+
+let saveDirectory = "/some/save/dir"
+
+fun listOfResults ->
+
+    // Calculate Gelman-Rubin statistic for all parameters 
+    // across multiple model runs
+    let stat = Convergence.gelmanRubinAll 1000 listOfResults
+
+    // Save results to a single file
+    Convergence.save saveDirectory stat
+
+

Logging individual model components

+

Sometimes it is helpful for diagnostic or visualisation purposes to +see the values of individual parts of a mathematical model during +computation, or at the minimum -log likelihood.

+

Bristlecone includes the ability to log out the values of individual +model components through time. An worked example is given below of how to +obtain computed values across the time-series for components within +a model system. First, you must set up a model that has a parameter +of the IComponentLogger<float>) type:

+

[ NB TODO: This function must be refactored to work with the new Bristlecone Language ]

+
// open Bristlecone
+// open Bristlecone.Language
+// open Bristlecone.Diagnostics.ModelComponents
+
+// let hypothesis (cLog:IComponentLogger<ModelExpression>) =
+
+//     let ``dN/dt`` = 
+//         Parameter "r" * This * cLog.StoreValue "log this thing" (Constant 1. - (This / Parameter "K"))
+
+//     Model.empty
+//     |> Model.addEquation       "N"      ``dN/dt``
+//     |> Model.estimateParameter "r"      noConstraints 0.10 5.00 
+//     |> Model.estimateParameter "K"      noConstraints 50.0 150.
+//     |> Model.useLikelihoodFunction      (ModelLibrary.Likelihood.sumOfSquares [ "N" ])
+//     |> Model.compile
+
+
+// fun engine singleResult ->
+//     // A wrapper around the Bristlecone.fit function
+//     let fitFn ts m e = Bristlecone.fit e (Optimisation.EndConditions.afterIteration 1) ts m
+//     let logs = ModelComponents.calculateComponents fitFn engine singleResult
+//     ()
+
+ +
Multiple items
module Bristlecone + +from Bristlecone

--------------------
namespace Bristlecone
+
module Diagnostics + +from Bristlecone
<summary>Diagnostic techniques for determining the suitability of + results obtained with Bristlecone.</summary>
+
namespace Bristlecone.Data
+
val saveDirectory: string
+
val listOfResults: ModelSelection.ResultSet.ResultSet<string,ModelSystem.ModelSystem> list
+
val stat: Convergence.ConvergenceStatistic seq seq
+
Multiple items
module Convergence + +from Bristlecone.Data

--------------------
module Convergence + +from Bristlecone.Diagnostics
<summary> + Convergence diagnostics for monte-carlo markov chain (MCMC) analyses. +</summary>
+
val gelmanRubinAll: n: int -> results: ModelSelection.ResultSet.ResultSet<string,ModelSystem.ModelSystem> list -> Convergence.ConvergenceStatistic seq seq
<summary> + Calculate the Gelman-Rubin statistic for each parameter in all of the + given `ResultSet`. The statistic tends downwards to one, with one indicating + perfect convergence between all chains. +</summary>
+
val save: directory: string -> result: Convergence.ConvergenceStatistic seq seq -> unit
+ +
+
+ + + +
+
    +

    Type something to start searching.

    +
    +
    + + + + + + + \ No newline at end of file diff --git a/diagnostics.ipynb b/diagnostics.ipynb new file mode 100644 index 0000000..14a608d --- /dev/null +++ b/diagnostics.ipynb @@ -0,0 +1,168 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Diagnostics\n", + "\n", + "Diagnostic statistics are essential to ensure that the model-fitting\n", + "and model-selection results are valid and complete.\n", + "\n", + "### Convergence Statistics\n", + "\n", + "For Monte-Carlo based optimisation techniques (such as the random walk\n", + "MCMC or the Filzbach-style MCMC) convergence statistics are useful to\n", + "assess whether multiple independent **chains** have identified the same\n", + "minimum -log likelihood in parameter space, which may be the global minimum.\n", + "\n", + "Bristlecone includes the Gelman-Rubin convergence statistic (Rhat), which\n", + "can be calculated on a per-parameter basis.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone\n", + "open Bristlecone.Diagnostics\n", + "open Bristlecone.Data\n", + "\n", + "let saveDirectory = \"/some/save/dir\"\n", + "\n", + "fun listOfResults -\u003e\n", + "\n", + " // Calculate Gelman-Rubin statistic for all parameters \n", + " // across multiple model runs\n", + " let stat = Convergence.gelmanRubinAll 1000 listOfResults\n", + "\n", + " // Save results to a single file\n", + " Convergence.save saveDirectory stat\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Logging individual model components\n", + "\n", + "Sometimes it is helpful for diagnostic or visualisation purposes to\n", + "see the values of individual parts of a mathematical model during\n", + "computation, or at the minimum -log likelihood.\n", + "\n", + "Bristlecone includes the ability to log out the values of individual\n", + "model components through time. An worked example is given below of how to\n", + "obtain computed values across the time-series for components within\n", + "a model system. First, you must set up a model that has a parameter\n", + "of the `IComponentLogger\u003cfloat\u003e)` type:\n", + "\n", + "[ NB TODO: This function must be refactored to work with the new Bristlecone Language ]()\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "// open Bristlecone\n", + "// open Bristlecone.Language\n", + "// open Bristlecone.Diagnostics.ModelComponents\n", + "\n", + "// let hypothesis (cLog:IComponentLogger\u003cModelExpression\u003e) =\n", + "\n", + "// let ``dN/dt`` = \n", + "// Parameter \"r\" * This * cLog.StoreValue \"log this thing\" (Constant 1. - (This / Parameter \"K\"))\n", + "\n", + "// Model.empty\n", + "// |\u003e Model.addEquation \"N\" ``dN/dt``\n", + "// |\u003e Model.estimateParameter \"r\" noConstraints 0.10 5.00 \n", + "// |\u003e Model.estimateParameter \"K\" noConstraints 50.0 150.\n", + "// |\u003e Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \"N\" ])\n", + "// |\u003e Model.compile\n", + "\n", + "\n", + "// fun engine singleResult -\u003e\n", + "// // A wrapper around the Bristlecone.fit function\n", + "// let fitFn ts m e = Bristlecone.fit e (Optimisation.EndConditions.afterIteration 1) ts m\n", + "// let logs = ModelComponents.calculateComponents fitFn engine singleResult\n", + "// ()\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/estimation-engine.fsx b/estimation-engine.fsx new file mode 100644 index 0000000..4263d47 --- /dev/null +++ b/estimation-engine.fsx @@ -0,0 +1,61 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Defining an Estimation Engine + +The **estimation engine** is the definition of the method +through which model-fitting will take place, as defined +by Bristlecone's `EstimationEngine` type. If you are +competing multiple hypotheses, a single `EstimationEngine` +will suffice for all model hypotheses. + +Forthcoming + +## Time Modes + +Bristlecone can run models in either discrete time, or continuous time. When running models in continuous time, an integration function is required: + +Currently only fixed timesteps are supported, but variable timestep support (e.g. for sediment core data) is planned. + +Two integration functions are included: + +Solver | Function | Description +--- | --- | --- +Runge-Kutta 4 (MathNet Numerics) | `Integration.MathNet.integrate` | A fourth-order Runge Kutta method to provide approximate solutions to ODE systems. +Runge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research) | `Integration.MsftOslo.integrate` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf). + + +## Optimisation + +Bristlecone supports optimisation functions that have the following type signature: + +```fsharp +type Optimise<'data> = int -> int -> Domain -> ('data[] -> 'data) -> ('data * 'data []) list +``` + +There are two optimsation techniques currently built-in: + +Method | Function | Description +--- | --- | --- +Amoeba (Nelder-Mead) | `Optimisation.Amoeba.solve` | A gradient-descent method. +MCMC Random Walk | `Optimisation.MonteCarlo.randomWalk` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf). + + +## Estimation Engines + +To use Bristlecone functions requires a configured `EstimationEngine`. The easiest way is with the helper functions within the `Bristlecone` module: + +Function | Type | Description +--- | --- | --- +`mkContinuous` | EstimationEngine | Default continuous engine +`mkDiscrete` | EstimationEngine | Default discrete model engine +`withContinuousTime` | t : Integrate<'a,'b> -> engine: EstimationEngine<'a,'b> -> EstimationEngine<'a,'b> | Transforms engine to continuous time mode, using the given integrator function. +`withConditioning` | c: Conditioning -> engine: EstimationEngine<'a,'b> -> EstimationEngine<'a,'b> | Choose how the start point is chosen when solving the model system. + + +* + +*) + diff --git a/estimation-engine.html b/estimation-engine.html new file mode 100644 index 0000000..89652c1 --- /dev/null +++ b/estimation-engine.html @@ -0,0 +1,439 @@ + + + + + + + + + + + + + + + + + + Defining a Model-Fitting Method (Estimation Engine) | bristlecone + + + + + + + + + + + + +
    + +
    + + + + + +
    +
    + +
    +
    + +

    Defining an Estimation Engine

    +

    The estimation engine is the definition of the method +through which model-fitting will take place, as defined +by Bristlecone's EstimationEngine type. If you are +competing multiple hypotheses, a single EstimationEngine +will suffice for all model hypotheses.

    +

    Forthcoming

    +

    Time Modes

    +

    Bristlecone can run models in either discrete time, or continuous time. When running models in continuous time, an integration function is required:

    +

    Currently only fixed timesteps are supported, but variable timestep support (e.g. for sediment core data) is planned.

    +

    Two integration functions are included:

    + + + + + + + + + + + + + + + + + + + + +

    Solver

    Function

    Description

    Runge-Kutta 4 (MathNet Numerics)

    Integration.MathNet.integrate

    A fourth-order Runge Kutta method to provide approximate solutions to ODE systems.

    Runge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research)

    Integration.MsftOslo.integrate

    A method based on classic Runge-Kutta, but with automatic error and step size control. See the documentation.

    + +

    Optimisation

    +

    Bristlecone supports optimisation functions that have the following type signature:

    +
    type Optimise<'data> = int -> int -> Domain -> ('data[] -> 'data) -> ('data * 'data []) list
    +
    +

    There are two optimsation techniques currently built-in:

    + + + + + + + + + + + + + + + + + + + + +

    Method

    Function

    Description

    Amoeba (Nelder-Mead)

    Optimisation.Amoeba.solve

    A gradient-descent method.

    MCMC Random Walk

    Optimisation.MonteCarlo.randomWalk

    A method based on classic Runge-Kutta, but with automatic error and step size control. See the documentation.

    + +

    Estimation Engines

    +

    To use Bristlecone functions requires a configured EstimationEngine. The easiest way is with the helper functions within the Bristlecone module:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Function

    Type

    Description

    mkContinuous

    EstimationEngine

    Default continuous engine

    mkDiscrete

    EstimationEngine

    Default discrete model engine

    withContinuousTime

    t : Integrate<'a,'b> -> engine: EstimationEngine<'a,'b> -> EstimationEngine<'a,'b>

    Transforms engine to continuous time mode, using the given integrator function.

    withConditioning

    c: Conditioning -> engine: EstimationEngine<'a,'b> -> EstimationEngine<'a,'b>

    Choose how the start point is chosen when solving the model system.

    + +

    *

    + +
    type Optimise<'data> = int -> int -> obj -> ('data array -> 'data) -> ('data * 'data array) list
    +
    Multiple items
    val int: value: 'T -> int (requires member op_Explicit)

    --------------------
    type int = int32

    --------------------
    type int<'Measure> = + int
    +
    type 'T list = List<'T>
    + +
    +
    + + + +
    +
      +

      Type something to start searching.

      +
      +
      + + + + + + + \ No newline at end of file diff --git a/estimation-engine.ipynb b/estimation-engine.ipynb new file mode 100644 index 0000000..9586e6d --- /dev/null +++ b/estimation-engine.ipynb @@ -0,0 +1,119 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Defining an Estimation Engine\n", + "\n", + "The **estimation engine** is the definition of the method\n", + "through which model-fitting will take place, as defined\n", + "by Bristlecone\u0027s `EstimationEngine` type. If you are\n", + "competing multiple hypotheses, a single `EstimationEngine`\n", + "will suffice for all model hypotheses.\n", + "\n", + "Forthcoming\n", + "\n", + "## Time Modes\n", + "\n", + "Bristlecone can run models in either discrete time, or continuous time. When running models in continuous time, an integration function is required:\n", + "\n", + "Currently only fixed timesteps are supported, but variable timestep support (e.g. for sediment core data) is planned.\n", + "\n", + "Two integration functions are included:\n", + "\n", + "Solver | Function | Description\n", + "--- | --- | ---\n", + "Runge-Kutta 4 (MathNet Numerics) | `Integration.MathNet.integrate` | A fourth-order Runge Kutta method to provide approximate solutions to ODE systems.\n", + "Runge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research) | `Integration.MsftOslo.integrate` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf).\n", + "\n", + "\n", + "## Optimisation\n", + "\n", + "Bristlecone supports optimisation functions that have the following type signature:\n", + "\n", + "```fsharp\n", + "type Optimise\u003c\u0027data\u003e = int -\u003e int -\u003e Domain -\u003e (\u0027data[] -\u003e \u0027data) -\u003e (\u0027data * \u0027data []) list\n", + "```\n", + "\n", + "There are two optimsation techniques currently built-in:\n", + "\n", + "Method | Function | Description\n", + "--- | --- | ---\n", + "Amoeba (Nelder-Mead) | `Optimisation.Amoeba.solve` | A gradient-descent method.\n", + "MCMC Random Walk | `Optimisation.MonteCarlo.randomWalk` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf).\n", + "\n", + "\n", + "## Estimation Engines\n", + "\n", + "To use Bristlecone functions requires a configured `EstimationEngine`. The easiest way is with the helper functions within the `Bristlecone` module:\n", + "\n", + "Function | Type | Description\n", + "--- | --- | ---\n", + "`mkContinuous` | EstimationEngine | Default continuous engine\n", + "`mkDiscrete` | EstimationEngine | Default discrete model engine\n", + "`withContinuousTime` | t : Integrate\u003c\u0027a,\u0027b\u003e -\u0026gt; engine: EstimationEngine\u003c\u0027a,\u0027b\u003e -\u0026gt; EstimationEngine\u003c\u0027a,\u0027b\u003e | Transforms engine to continuous time mode, using the given integrator function.\n", + "`withConditioning` | c: Conditioning -\u0026gt; engine: EstimationEngine\u003c\u0027a,\u0027b\u003e -\u0026gt; EstimationEngine\u003c\u0027a,\u0027b\u003e | Choose how the start point is chosen when solving the model system.\n", + "\n", + "\n", + "*\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/examples/data/lynx-hare.csv b/examples/data/lynx-hare.csv new file mode 100644 index 0000000..403ac3b --- /dev/null +++ b/examples/data/lynx-hare.csv @@ -0,0 +1 @@ +Year Hare Lynx 1845-1-1 19.58 30.09 1846-1-1 19.6 45.15 1847-1-1 19.61 49.15 1848-1-1 11.99 39.52 1849-1-1 28.04 21.23 1850-1-1 58 8.42 1851-1-1 74.6 5.56 1852-1-1 75.09 5.08 1853-1-1 88.48 10.17 1854-1-1 61.28 19.6 1855-1-1 74.67 32.91 1856-1-1 88.06 34.38 1857-1-1 68.51 29.59 1858-1-1 32.19 21.3 1859-1-1 12.64 13.69 1860-1-1 21.49 7.65 1861-1-1 30.35 4.08 1862-1-1 2.18 4.09 1863-1-1 152.65 14.33 1864-1-1 148.36 38.22 1865-1-1 85.81 60.78 1866-1-1 41.41 70.77 1867-1-1 14.75 72.77 1868-1-1 2.28 42.68 1869-1-1 5.91 16.39 1870-1-1 9.95 9.83 1871-1-1 10.44 5.8 1872-1-1 70.64 5.26 1873-1-1 50.12 18.91 1874-1-1 50.13 30.95 1875-1-1 101.25 31.18 1876-1-1 97.12 46.34 1877-1-1 86.51 45.77 1878-1-1 72.17 44.15 1879-1-1 38.32 36.33 1880-1-1 10.11 12.03 1881-1-1 7.74 12.6 1882-1-1 9.67 18.34 1883-1-1 43.12 35.14 1884-1-1 52.21 43.77 1885-1-1 134.85 65.69 1886-1-1 134.86 79.35 1887-1-1 103.79 51.65 1888-1-1 46.1 32.59 1889-1-1 15.03 22.45 1890-1-1 24.2 16.16 1891-1-1 41.65 14.12 1892-1-1 52.34 20.38 1893-1-1 53.78 33.33 1894-1-1 70.4 46 1895-1-1 85.81 51.41 1896-1-1 56.69 46.43 1897-1-1 16.59 33.68 1898-1-1 6.16 18.01 1899-1-1 2.3 8.86 01/01/1900 12.82 7.13 01/01/1901 4.72 9.47 01/01/1902 4.73 14.86 01/01/1903 37.22 31.47 01/01/1904 69.72 60.57 01/01/1905 57.78 63.51 01/01/1906 28.68 54.7 01/01/1907 23.37 6.3 01/01/1908 21.54 3.41 01/01/1909 26.34 5.44 01/01/1910 53.1 11.65 01/01/1911 68.48 20.35 01/01/1912 75.58 32.88 01/01/1913 57.92 39.55 01/01/1914 40.97 43.36 01/01/1915 24.95 40.83 01/01/1916 12.59 30.36 01/01/1917 4.97 17.18 01/01/1918 4.5 6.82 01/01/1919 11.21 3.19 01/01/1920 56.6 3.52 01/01/1921 69.63 9.94 01/01/1922 77.74 20.3 01/01/1923 80.53 31.99 01/01/1924 73.38 42.36 01/01/1925 36.93 49.08 01/01/1926 4.64 53.99 01/01/1927 2.54 52.25 01/01/1928 1.8 37.7 01/01/1929 2.39 19.14 01/01/1930 4.23 6.98 01/01/1931 19.52 8.31 01/01/1932 82.11 16.01 01/01/1933 89.76 24.82 01/01/1934 81.66 29.7 01/01/1935 15.76 35.4 \ No newline at end of file diff --git a/examples/dendroecology.fsx b/examples/dendroecology.fsx new file mode 100644 index 0000000..e7c1ae1 --- /dev/null +++ b/examples/dendroecology.fsx @@ -0,0 +1,155 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Growth of tree rings in response to temperature + +This Bristlecone example demonstrates model-fitting +using high-resolution monthly temperature data with +annual ring width increments. + +First, we must reference Bristlecone and open it: + +*) +open Bristlecone // Opens Bristlecone core library and estimation engine +open Bristlecone.Language // Open the language for writing Bristlecone models +open Bristlecone.Time +(** +### Step 1. Defining the ecological model + +Here, we + +*) +// 1. Model System +// ---------------------------- + +let hypothesis = + + /// The universal gas constant in J mol−1 K−1 + let gasConstant = Constant 8.314 + + /// An Arrhenius function to represent temperature limitation on growth. + /// Form of equation: https://pubag.nal.usda.gov/download/13565/PDF + let temperatureLimitation = + Constant System.Math.E + ** ((Constant 1000. * Parameter "Ea" * (Environment "temperature" - Constant 298.)) + / (Constant 298. * gasConstant * Environment "temperature")) + + /// Plant growth is a function of net photosynthesis minus environmental losses. + /// Photosynthesis is limited by light and temperature. + let ``db/dt`` = This * Parameter "r" * temperatureLimitation - Parameter "γB" * This + + Model.empty + |> Model.addEquation "stem radius" ``db/dt`` + |> Model.estimateParameter "Ea" noConstraints 40.0 50.0 + |> Model.estimateParameter "γB" noConstraints 0.01 0.40 + |> Model.estimateParameter "r" notNegative 0.01 1.00 + |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ "stem radius" ]) + |> Model.compile + + +// 2. Setup Bristlecone Engine +// ---------------------------- +// A bristlecone engine provides a fixed setup for estimating parameters from data. +// Use the same engine for all model fits within a single study. + +let engine = + Bristlecone.mkContinuous + |> Bristlecone.withContinuousTime Integration.MathNet.integrate + |> Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint + |> Bristlecone.withTunedMCMC + [ Optimisation.MonteCarlo.TuneMethod.CovarianceWithScale 0.200, + 250, + Optimisation.EndConditions.afterIteration 20000 ] + + +// 3. Test Engine and Model +// ---------------------------- +// Running a full test is strongly recommended. The test will demonstrate if the current +// configuration can find known parameters for a model. If this step fails, there is an +// issue with either your model, or the Bristlecone configuration. + +// 0. Configure Options +// ---------------------------- + +module Settings = + + /// Bristlecone can use latitude and longitude to compute day length. + let latitude, longitude = 63.2, 15.2 + let endWhen = Optimisation.EndConditions.afterIteration 1 + + +// let startValues = +// [ ShortCode.create "lynx", 30.09; ShortCode.create "hare", 19.58 ] |> Map.ofList + +// // TODO Test settings new format + +// hypothesis +// |> Bristlecone.testModel engine Options.testSeriesLength startValues Options.iterations [] + + +// // 4. Load Real Data +// // ---------------------------- +// // Here, we are using the FSharp.Data type provider to read in .csv datasets. +// // We prepare the monthly temperature dataset for the analysis by: +// // a) Loading the daily dataset using the FSharp.Data library; +// // b) Replacing NaN values with the F# 'None' option type; +// // c) Converting the dataset into a Bristlecone time series type; +// // d) Interpolate the 'None' values by linear interpolation to fill in missing measurements; +// // e) Generalise the time series from daily to monthly by applying an average function. + +// open FSharp.Data + +// // TODO Is there a way to streamline this? +// [] +// let DailyTemperatureUrl = __SOURCE_DIRECTORY__ + "/data/mean-temperature-daily.csv" + +// let meanTemperatureMonthly = +// let maxTemperatures = CsvProvider.Load DailyTemperatureUrl + +// maxTemperatures.Rows +// |> Seq.map (fun r -> +// ((if System.Double.IsNaN r.``T[avg]`` then +// None +// else +// Some(r.``T[avg]`` + 273.15)), +// r.Date)) +// |> TimeSeries.fromObservations +// |> TimeSeries.interpolate +// |> TimeSeries.generalise (FixedTemporalResolution.Months(PositiveInt.create 1)) (fun x -> x |> Seq.averageBy fst) + + +// module Test = + +// open Bristlecone.Test + +// let settings = TestSettings.Default + +// let testSettings = +// { Resolution = Years 1 +// TimeSeriesLength = 30 +// StartValues = [ code "b", 5.; code "t", 255. ] |> Map.ofList +// EndCondition = Settings.endWhen +// GenerationRules = +// [ "b" |> GenerationRules.alwaysLessThan 1000000. +// "b" |> GenerationRules.alwaysMoreThan 0. +// code "b", (fun data -> (data |> Seq.max) - (data |> Seq.min) > 100.) ] +// NoiseGeneration = fun p data -> data +// EnvironmentalData = [ code "t", TemperatureData.monthly ] |> Map.ofList +// Random = MathNet.Numerics.Random.MersenneTwister() +// StartDate = System.DateTime(1970, 01, 01) +// Attempts = 50000 } + +// let run () = +// hypothesis |> Bristlecone.testModel Settings.engine testSettings + + +// let testResult = Test.run () + +// // 4. Fit Model to Real Data +// // ----------------------------------- +// let result = +// hypothesis +// |> Bristlecone.fit engine (Optimisation.EndConditions.afterIteration Options.iterations) data + diff --git a/examples/dendroecology.html b/examples/dendroecology.html new file mode 100644 index 0000000..b03b13a --- /dev/null +++ b/examples/dendroecology.html @@ -0,0 +1,574 @@ + + + + + + + + + + + + + + + + + + Dendroecology: investigating plant-environment interactions | bristlecone + + + + + + + + + + + + +
      + +
      + + + + + +
      +
      + +
      +
      + +

      Growth of tree rings in response to temperature

      +

      This Bristlecone example demonstrates model-fitting +using high-resolution monthly temperature data with +annual ring width increments.

      +

      First, we must reference Bristlecone and open it:

      +
      open Bristlecone // Opens Bristlecone core library and estimation engine
      +open Bristlecone.Language // Open the language for writing Bristlecone models
      +open Bristlecone.Time
      +
      +

      Step 1. Defining the ecological model

      +

      Here, we

      +
      // 1. Model System
      +// ----------------------------
      +
      +let hypothesis =
      +
      +    /// The universal gas constant in J mol−1 K−1
      +    let gasConstant = Constant 8.314
      +
      +    /// An Arrhenius function to represent temperature limitation on growth.
      +    /// Form of equation: https://pubag.nal.usda.gov/download/13565/PDF
      +    let temperatureLimitation =
      +        Constant System.Math.E
      +        ** ((Constant 1000. * Parameter "Ea" * (Environment "temperature" - Constant 298.))
      +            / (Constant 298. * gasConstant * Environment "temperature"))
      +
      +    /// Plant growth is a function of net photosynthesis minus environmental losses.
      +    /// Photosynthesis is limited by light and temperature.
      +    let ``db/dt`` = This * Parameter "r" * temperatureLimitation - Parameter "γB" * This
      +
      +    Model.empty
      +    |> Model.addEquation "stem radius" ``db/dt``
      +    |> Model.estimateParameter "Ea" noConstraints 40.0 50.0
      +    |> Model.estimateParameter "γB" noConstraints 0.01 0.40
      +    |> Model.estimateParameter "r" notNegative 0.01 1.00
      +    |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ "stem radius" ])
      +    |> Model.compile
      +
      +
      +// 2. Setup Bristlecone Engine
      +// ----------------------------
      +// A bristlecone engine provides a fixed setup for estimating parameters from data.
      +// Use the same engine for all model fits within a single study.
      +
      +let engine =
      +    Bristlecone.mkContinuous
      +    |> Bristlecone.withContinuousTime Integration.MathNet.integrate
      +    |> Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint
      +    |> Bristlecone.withTunedMCMC
      +        [ Optimisation.MonteCarlo.TuneMethod.CovarianceWithScale 0.200,
      +          250,
      +          Optimisation.EndConditions.afterIteration 20000 ]
      +
      +
      +// 3. Test Engine and Model
      +// ----------------------------
      +// Running a full test is strongly recommended. The test will demonstrate if the current
      +// configuration can find known parameters for a model. If this step fails, there is an
      +// issue with either your model, or the Bristlecone configuration.
      +
      +// 0. Configure Options
      +// ----------------------------
      +
      +module Settings =
      +
      +    /// Bristlecone can use latitude and longitude to compute day length.
      +    let latitude, longitude = 63.2, 15.2
      +    let endWhen = Optimisation.EndConditions.afterIteration 1
      +
      +
      +// let startValues =
      +//     [ ShortCode.create "lynx", 30.09; ShortCode.create "hare", 19.58 ] |> Map.ofList
      +
      +// // TODO Test settings new format
      +
      +// hypothesis
      +// |> Bristlecone.testModel engine Options.testSeriesLength startValues Options.iterations []
      +
      +
      +// // 4. Load Real Data
      +// // ----------------------------
      +// // Here, we are using the FSharp.Data type provider to read in .csv datasets.
      +// // We prepare the monthly temperature dataset for the analysis by:
      +// // a) Loading the daily dataset using the FSharp.Data library;
      +// // b) Replacing NaN values with the F# 'None' option type;
      +// // c) Converting the dataset into a Bristlecone time series type;
      +// // d) Interpolate the 'None' values by linear interpolation to fill in missing measurements;
      +// // e) Generalise the time series from daily to monthly by applying an average function.
      +
      +// open FSharp.Data
      +
      +// // TODO Is there a way to streamline this?
      +// [<Literal>]
      +// let DailyTemperatureUrl = __SOURCE_DIRECTORY__ + "/data/mean-temperature-daily.csv"
      +
      +// let meanTemperatureMonthly =
      +//     let maxTemperatures = CsvProvider<DailyTemperatureUrl>.Load DailyTemperatureUrl
      +
      +//     maxTemperatures.Rows
      +//     |> Seq.map (fun r ->
      +//         ((if System.Double.IsNaN r.``T[avg]`` then
      +//               None
      +//           else
      +//               Some(r.``T[avg]`` + 273.15)),
      +//          r.Date))
      +//     |> TimeSeries.fromObservations
      +//     |> TimeSeries.interpolate
      +//     |> TimeSeries.generalise (FixedTemporalResolution.Months(PositiveInt.create 1)) (fun x -> x |> Seq.averageBy fst)
      +
      +
      +// module Test =
      +
      +//     open Bristlecone.Test
      +
      +//     let settings = TestSettings.Default
      +
      +//     let testSettings =
      +//         { Resolution = Years 1
      +//           TimeSeriesLength = 30
      +//           StartValues = [ code "b", 5.; code "t", 255. ] |> Map.ofList
      +//           EndCondition = Settings.endWhen
      +//           GenerationRules =
      +//             [ "b" |> GenerationRules.alwaysLessThan 1000000.
      +//               "b" |> GenerationRules.alwaysMoreThan 0.
      +//               code "b", (fun data -> (data |> Seq.max) - (data |> Seq.min) > 100.) ]
      +//           NoiseGeneration = fun p data -> data
      +//           EnvironmentalData = [ code "t", TemperatureData.monthly ] |> Map.ofList
      +//           Random = MathNet.Numerics.Random.MersenneTwister()
      +//           StartDate = System.DateTime(1970, 01, 01)
      +//           Attempts = 50000 }
      +
      +//     let run () =
      +//         hypothesis |> Bristlecone.testModel Settings.engine testSettings
      +
      +
      +// let testResult = Test.run ()
      +
      +// // 4. Fit Model to Real Data
      +// // -----------------------------------
      +// let result =
      +//     hypothesis
      +//     |> Bristlecone.fit engine (Optimisation.EndConditions.afterIteration Options.iterations) data
      +
      + +
      Multiple items
      module Bristlecone + +from Bristlecone

      --------------------
      namespace Bristlecone
      +
      module Language + +from Bristlecone
      <summary> + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +</summary>
      +
      module Time + +from Bristlecone
      +
      val hypothesis: ModelSystem.ModelSystem
      +
      val gasConstant: ModelExpression
       The universal gas constant in J mol−1 K−1
      +
      union case ModelExpression.Constant: float -> ModelExpression
      +
      val temperatureLimitation: ModelExpression
       An Arrhenius function to represent temperature limitation on growth.
       Form of equation: https://pubag.nal.usda.gov/download/13565/PDF
      +
      namespace System
      +
      type Math = + static member Abs: value: decimal -> decimal + 7 overloads + static member Acos: d: float -> float + static member Acosh: d: float -> float + static member Asin: d: float -> float + static member Asinh: d: float -> float + static member Atan: d: float -> float + static member Atan2: y: float * x: float -> float + static member Atanh: d: float -> float + static member BigMul: a: int * b: int -> int64 + 2 overloads + static member BitDecrement: x: float -> float + ...
      <summary>Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.</summary>
      +
      field System.Math.E: float = 2.71828182846
      <summary>Represents the natural logarithmic base, specified by the constant, <see langword="e" />.</summary>
      +
      Multiple items
      union case ModelExpression.Parameter: string -> ModelExpression

      --------------------
      module Parameter + +from Bristlecone
      +
      union case ModelExpression.Environment: string -> ModelExpression
      +
      union case ModelExpression.This: ModelExpression
      +
      module Model + +from Bristlecone.Language
      <summary> + Terms for scaffolding a model system for use with Bristlecone. +</summary>
      +
      val empty: ModelBuilder.ModelBuilder
      +
      val addEquation: name: string -> eq: ModelExpression -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
      +
      val estimateParameter: name: string -> constraintMode: Parameter.Constraint -> lower: float -> upper: float -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
      +
      val noConstraints: Parameter.Constraint
      +
      val notNegative: Parameter.Constraint
      +
      val useLikelihoodFunction: likelihoodFn: ModelSystem.LikelihoodFn -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
      +
      namespace Bristlecone.ModelLibrary
      +
      module Likelihood + +from Bristlecone.ModelLibrary
      <summary>Likelihood functions to represent a variety of distributions and data types.</summary>
      <namespacedoc><summary>Pre-built model parts for use in Bristlecone</summary></namespacedoc>
      +
      val sumOfSquares: keys: string list -> ModelSystem.ParameterValueAccessor -> data: CodedMap<ModelSystem.PredictedSeries> -> float
      <summary> + Residual sum of squares. Provides a simple metric of distance between + observed data and model predictions. +</summary>
      +
      val compile: (ModelBuilder.ModelBuilder -> ModelSystem.ModelSystem)
      +
      val engine: EstimationEngine.EstimationEngine<float,float>
      +
      val mkContinuous: EstimationEngine.EstimationEngine<float,float>
      <summary> + A standard `EstimationEngine` for ordinary differential equation models. +</summary>
      +
      val withContinuousTime: t: EstimationEngine.Integrate<'a,'b> -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
      <summary> + Use a custom integration method +</summary>
      +
      namespace Bristlecone.Integration
      +
      module MathNet + +from Bristlecone.Integration
      +
      val integrate: log: (Logging.LogEvent -> unit) -> tInitial: float -> tEnd: float -> tStep: float -> initialConditions: Map<'a,float> -> externalEnvironment: Map<'a,TimeIndex.TimeIndex<float>> -> modelMap: Map<'a,(float -> float -> Map<'a,float> -> float)> -> Map<'a,float array> (requires comparison)
      +
      val withConditioning: c: Conditioning.Conditioning<'a> -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
      <summary> + Choose how the start point is chosen when solving the model system +</summary>
      +
      module Conditioning + +from Bristlecone
      +
      union case Conditioning.Conditioning.RepeatFirstDataPoint: Conditioning.Conditioning<'a>
      +
      val withTunedMCMC: tuning: Optimisation.MonteCarlo.TuneStep<float> seq -> engine: EstimationEngine.EstimationEngine<float,'a> -> EstimationEngine.EstimationEngine<float,'a>
      +
      namespace Bristlecone.Optimisation
      +
      module MonteCarlo + +from Bristlecone.Optimisation
      <summary> + A module containing Monte Carlo Markov Chain (MCMC) methods for optimisation. + An introduction to MCMC approaches is provided by + [Reali, Priami, and Marchetti (2017)](https://doi.org/10.3389/fams.2017.00006) +</summary>
      +
      type TuneMethod = + | Covariance of float + | Scale + | CovarianceWithScale of float + | CovarianceWithScaleTotalHistory of float
      +
      union case Optimisation.MonteCarlo.TuneMethod.CovarianceWithScale: float -> Optimisation.MonteCarlo.TuneMethod
      +
      module EndConditions + +from Bristlecone.Optimisation
      +
      val afterIteration: iteration: int -> EstimationEngine.Solution<float> list -> currentIteration: int -> bool
      <summary> + End the optimisation procedure when a minimum number of iterations is exceeded. +</summary>
      +
      module Settings + +from Dendroecology
      +
      val latitude: float
       Bristlecone can use latitude and longitude to compute day length.
      +
      val longitude: float
       Bristlecone can use latitude and longitude to compute day length.
      +
      val endWhen: EstimationEngine.EndCondition<float>
      + +
      +
      + + + +
      +
        +

        Type something to start searching.

        +
        +
        + + + + + + + \ No newline at end of file diff --git a/examples/dendroecology.ipynb b/examples/dendroecology.ipynb new file mode 100644 index 0000000..fc41988 --- /dev/null +++ b/examples/dendroecology.ipynb @@ -0,0 +1,249 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Growth of tree rings in response to temperature\n", + "\n", + "This Bristlecone example demonstrates model-fitting\n", + "using high-resolution monthly temperature data with\n", + "annual ring width increments.\n", + "\n", + "First, we must reference Bristlecone and open it:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone // Opens Bristlecone core library and estimation engine\n", + "open Bristlecone.Language // Open the language for writing Bristlecone models\n", + "open Bristlecone.Time\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Step 1. Defining the ecological model\n", + "\n", + "Here, we\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "// 1. Model System\n", + "// ----------------------------\n", + "\n", + "let hypothesis =\n", + "\n", + " /// The universal gas constant in J mol−1 K−1\n", + " let gasConstant = Constant 8.314\n", + "\n", + " /// An Arrhenius function to represent temperature limitation on growth.\n", + " /// Form of equation: https://pubag.nal.usda.gov/download/13565/PDF\n", + " let temperatureLimitation =\n", + " Constant System.Math.E\n", + " ** ((Constant 1000. * Parameter \"Ea\" * (Environment \"temperature\" - Constant 298.))\n", + " / (Constant 298. * gasConstant * Environment \"temperature\"))\n", + "\n", + " /// Plant growth is a function of net photosynthesis minus environmental losses.\n", + " /// Photosynthesis is limited by light and temperature.\n", + " let ``db/dt`` = This * Parameter \"r\" * temperatureLimitation - Parameter \"γB\" * This\n", + "\n", + " Model.empty\n", + " |\u003e Model.addEquation \"stem radius\" ``db/dt``\n", + " |\u003e Model.estimateParameter \"Ea\" noConstraints 40.0 50.0\n", + " |\u003e Model.estimateParameter \"γB\" noConstraints 0.01 0.40\n", + " |\u003e Model.estimateParameter \"r\" notNegative 0.01 1.00\n", + " |\u003e Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \"stem radius\" ])\n", + " |\u003e Model.compile\n", + "\n", + "\n", + "// 2. Setup Bristlecone Engine\n", + "// ----------------------------\n", + "// A bristlecone engine provides a fixed setup for estimating parameters from data.\n", + "// Use the same engine for all model fits within a single study.\n", + "\n", + "let engine =\n", + " Bristlecone.mkContinuous\n", + " |\u003e Bristlecone.withContinuousTime Integration.MathNet.integrate\n", + " |\u003e Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint\n", + " |\u003e Bristlecone.withTunedMCMC\n", + " [ Optimisation.MonteCarlo.TuneMethod.CovarianceWithScale 0.200,\n", + " 250,\n", + " Optimisation.EndConditions.afterIteration 20000 ]\n", + "\n", + "\n", + "// 3. Test Engine and Model\n", + "// ----------------------------\n", + "// Running a full test is strongly recommended. The test will demonstrate if the current\n", + "// configuration can find known parameters for a model. If this step fails, there is an\n", + "// issue with either your model, or the Bristlecone configuration.\n", + "\n", + "// 0. Configure Options\n", + "// ----------------------------\n", + "\n", + "module Settings =\n", + "\n", + " /// Bristlecone can use latitude and longitude to compute day length.\n", + " let latitude, longitude = 63.2, 15.2\n", + " let endWhen = Optimisation.EndConditions.afterIteration 1\n", + "\n", + "\n", + "// let startValues =\n", + "// [ ShortCode.create \"lynx\", 30.09; ShortCode.create \"hare\", 19.58 ] |\u003e Map.ofList\n", + "\n", + "// // TODO Test settings new format\n", + "\n", + "// hypothesis\n", + "// |\u003e Bristlecone.testModel engine Options.testSeriesLength startValues Options.iterations []\n", + "\n", + "\n", + "// // 4. Load Real Data\n", + "// // ----------------------------\n", + "// // Here, we are using the FSharp.Data type provider to read in .csv datasets.\n", + "// // We prepare the monthly temperature dataset for the analysis by:\n", + "// // a) Loading the daily dataset using the FSharp.Data library;\n", + "// // b) Replacing NaN values with the F# \u0027None\u0027 option type;\n", + "// // c) Converting the dataset into a Bristlecone time series type;\n", + "// // d) Interpolate the \u0027None\u0027 values by linear interpolation to fill in missing measurements;\n", + "// // e) Generalise the time series from daily to monthly by applying an average function.\n", + "\n", + "// open FSharp.Data\n", + "\n", + "// // TODO Is there a way to streamline this?\n", + "// [\u003cLiteral\u003e]\n", + "// let DailyTemperatureUrl = __SOURCE_DIRECTORY__ + \"/data/mean-temperature-daily.csv\"\n", + "\n", + "// let meanTemperatureMonthly =\n", + "// let maxTemperatures = CsvProvider\u003cDailyTemperatureUrl\u003e.Load DailyTemperatureUrl\n", + "\n", + "// maxTemperatures.Rows\n", + "// |\u003e Seq.map (fun r -\u003e\n", + "// ((if System.Double.IsNaN r.``T[avg]`` then\n", + "// None\n", + "// else\n", + "// Some(r.``T[avg]`` + 273.15)),\n", + "// r.Date))\n", + "// |\u003e TimeSeries.fromObservations\n", + "// |\u003e TimeSeries.interpolate\n", + "// |\u003e TimeSeries.generalise (FixedTemporalResolution.Months(PositiveInt.create 1)) (fun x -\u003e x |\u003e Seq.averageBy fst)\n", + "\n", + "\n", + "// module Test =\n", + "\n", + "// open Bristlecone.Test\n", + "\n", + "// let settings = TestSettings.Default\n", + "\n", + "// let testSettings =\n", + "// { Resolution = Years 1\n", + "// TimeSeriesLength = 30\n", + "// StartValues = [ code \"b\", 5.; code \"t\", 255. ] |\u003e Map.ofList\n", + "// EndCondition = Settings.endWhen\n", + "// GenerationRules =\n", + "// [ \"b\" |\u003e GenerationRules.alwaysLessThan 1000000.\n", + "// \"b\" |\u003e GenerationRules.alwaysMoreThan 0.\n", + "// code \"b\", (fun data -\u003e (data |\u003e Seq.max) - (data |\u003e Seq.min) \u003e 100.) ]\n", + "// NoiseGeneration = fun p data -\u003e data\n", + "// EnvironmentalData = [ code \"t\", TemperatureData.monthly ] |\u003e Map.ofList\n", + "// Random = MathNet.Numerics.Random.MersenneTwister()\n", + "// StartDate = System.DateTime(1970, 01, 01)\n", + "// Attempts = 50000 }\n", + "\n", + "// let run () =\n", + "// hypothesis |\u003e Bristlecone.testModel Settings.engine testSettings\n", + "\n", + "\n", + "// let testResult = Test.run ()\n", + "\n", + "// // 4. Fit Model to Real Data\n", + "// // -----------------------------------\n", + "// let result =\n", + "// hypothesis\n", + "// |\u003e Bristlecone.fit engine (Optimisation.EndConditions.afterIteration Options.iterations) data\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/examples/predator-prey.fsx b/examples/predator-prey.fsx new file mode 100644 index 0000000..fcb7f80 --- /dev/null +++ b/examples/predator-prey.fsx @@ -0,0 +1,954 @@ +(** +[![Script](https://acm.im/bristlecone//img/badge-script.svg)](https://acm.im/bristlecone//examples/predator-prey.fsx)  +[![Notebook](https://acm.im/bristlecone//img/badge-notebook.svg)](https://acm.im/bristlecone//examples/predator-prey.ipynb) + +## Predator-Prey Dynamics: Snowshoe Hare and Lynx + +Here we use the classic example of snowshoe hare and lynx predator-prey dynamics, +to demonstrate the basic functions of Bristlecone. The dataset is a 90-year +time-series of snowshoe hare and lynx pelts purchased by the +Hudson's Bay Company of Canada. Data is in 1000s. + +To get started, we first load and open the Bristlecone library in +an F# script file (.fsx): + +*) +open Bristlecone // Opens Bristlecone core library and estimation engine +open Bristlecone.Language // Open the language for writing Bristlecone models +(** +### Defining the ecological model + +In Bristlecone, a single ecological model (representing a single hypothesis) +is defined through the `ModelSystem` type. A `ModelSystem` needs to include three key +components: + +* **Model equations.** When working in continuous time, these are a system of Ordinary Differential Equations (ODEs). + +* **Parameters to be estimated.** You must specify the starting bounds and constraints for every parameter included in the model equations. + +* **Likelihood function**. The (negative log) likelihood function **-logL** represents the probability of observing the data given the parameter set. We use a negative log likelihood function, which is then minimised during optimisation. + +In this example, we demonstrate using the **Lotka–Volterra** predator–prey model as the +model system. For the -logL function we use a bivariate normal negative log likelihood function. +This -logL function assumes normally-distributed observation error around each observation +at each time-point, for both the lynx and hare data. The -logL function contains +three parameters that are to be estimated alongside the deterministic model: the variability +in lynx data, the variability in hare data, and their covariance. + +*) +let ``predator-prey`` = + + let ``dh/dt`` = Parameter "α" * This - Parameter "β" * This * Environment "lynx" + let ``dl/dt`` = - Parameter "γ" * This + Parameter "Δ" * Environment "hare" * This + + Model.empty + |> Model.addEquation "hare" ``dh/dt`` + |> Model.addEquation "lynx" ``dl/dt`` + + |> Model.estimateParameter "α" noConstraints 0.01 1.00 // Natural growth rate of hares in absence of predation + |> Model.estimateParameter "β" noConstraints 0.01 1.00 // Death rate per encounter of hares due to predation + |> Model.estimateParameter "Δ" noConstraints 0.01 0.20 // Efficiency of turning predated hares into lynx + |> Model.estimateParameter "γ" noConstraints 0.01 0.20 // Natural death rate of lynx in the absence of food + + |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares ["hare"; "lynx"]) + |> Model.estimateParameter "ρ" noConstraints -0.500 0.500 + |> Model.estimateParameter "σ[x]" notNegative 0.001 0.100 + |> Model.estimateParameter "σ[y]" notNegative 0.001 0.100 + + |> Model.compile + + // TODO Error when setting constraints. Optim allows them to go negative! +(** +### Setting up the **Bristlecone Engine** + +A bristlecone engine provides a fixed setup for estimating parameters from data. +Use the same engine for all model fits within a single study. +This engine uses a gradident descent method (Nelder Mead simplex), and a basic +Runge-Kutta 4 integration method provided by MathNet Numerics. + +*) +let engine = + Bristlecone.mkContinuous + |> Bristlecone.withTunedMCMC [] + |> Bristlecone.withContinuousTime Integration.MathNet.integrate + |> Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint + |> Bristlecone.withSeed 1000 // We are setting a seed for this example - see below +(** +**Note. We have set a seed for random number generation for this worked example. This ensures that the results are the same each time this documentation is generated.** + +### Does it all work? Testing the engine and model + +Before being confident in the ability of our estimation engine to +be able to arrive at the correct solution, we must run a full test +of the model and estimation engine. + +Bristlecone includes the `Bristlecone.testModel` function, which +we use here. Given a model system and estimation engine, the function +generates a random parameter set (**θ**) many times; for each **θ**, the +'true' time-series are generated. The test result indicates the effectiveness +of the configuration at estimating **θ** given the auto-generated +time-series. If there is divergence, there is likely an +issue with your model or the Bristlecone configuration. + +Bristlecone includes many settings to configure the test +procedure. A simple test configuration is set as `Test.defaultSettings`, +but here we will configure some additional settings: + +*) +let testSettings = + Test.create + |> Test.addStartValues [ + "hare", 50. + "lynx", 75. ] + |> Test.addNoise (Test.Noise.tryAddNormal "σ[y]" "lynx") + |> Test.addNoise (Test.Noise.tryAddNormal "σ[x]" "hare") + |> Test.addGenerationRules [ + Test.GenerationRules.alwaysLessThan 10000. "lynx" + Test.GenerationRules.alwaysLessThan 10000. "hare" ] + |> Test.withTimeSeriesLength 30 + |> Test.endWhen (Optimisation.EndConditions.afterIteration 1) +(** +In our `TestSettings`, we have specified the initial time point (t = 0) +for both modelled time-series. We have also added noise around +each generated time-series, and specified that each time-series +should be 30 years in length. + +With these test settings, we can now run the test. + +*) +let testResult = + ``predator-prey`` + |> Bristlecone.testModel engine testSettings(* output: +##1## GeneralEvent "Attempting to generate parameter set." +##1## GeneralEvent "The data must comply with 2 rules after 50000 tries." +##1## GeneralEvent + "Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1)." +##1## DebugEvent + "Observations occur on a fixed temporal resolution: Years PositiveInt 1." +##1## DebugEvent + "No environmental forcing data was supplied. Solving using time points of observations." +##1## GeneralEvent + "Skipping optimisation: only the result of the given parameters will be computed" +##1## DebugEvent + "Observations occur on a fixed temporal resolution: Years PositiveInt 1." +##1## DebugEvent + "No environmental forcing data was supplied. Solving using time points of observations." +##1## DebugEvent + "Observations occur on a fixed temporal resolution: Years PositiveInt 1." +##1## DebugEvent + "No environmental forcing data was supplied. Solving using time points of observations." +##1## GeneralEvent + "Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1)." +##1## DebugEvent + "Observations occur on a fixed temporal resolution: Years PositiveInt 1." +##1## DebugEvent + "No environmental forcing data was supplied. Solving using time points of observations." +##1## GeneralEvent + "[Optimisation] Initial theta is [|0.04560414322; 0.4458347169; 0.007666657133; 0.1825123468; -0.091774904; + 0.02763088772; 0.06570124545|]" +##1## GeneralEvent "[Optimisation] Starting MCMC Random Walk" +##1## DebugEvent + "Observations occur on a fixed temporal resolution: Years PositiveInt 1." +##1## DebugEvent + "No environmental forcing data was supplied. Solving using time points of observations." +##1## DebugEvent + "Observations occur on a fixed temporal resolution: Years PositiveInt 1." +##1## DebugEvent + "No environmental forcing data was supplied. Solving using time points of observations."*) +(** +We can plot the test results to check the fit. + +
        + +### Fitting to real data + +First, we must load in the real data, which is in a CSV file. Here, we will use +the FSharp.Data type provider to read in the CSV file (see [the FSharp.Data docs](http://fsprojects.github.io/FSharp.Data/library/CsvProvider.html) +for further information on how to use the library). We place the raw data into +a Bristlecone `TimeSeries` type using `TimeSeries.fromObservations`: + +*) +[] +let ResolutionFolder = __SOURCE_DIRECTORY__ + +type PopulationData = FSharp.Data.CsvProvider<"data/lynx-hare.csv", ResolutionFolder = ResolutionFolder> + +let data = + let csv = PopulationData.Load (__SOURCE_DIRECTORY__ + "/data/lynx-hare.csv") + [ (code "hare").Value, Time.TimeSeries.fromObservations (csv.Rows |> Seq.map(fun r -> float r.Hare, r.Year)) + (code "lynx").Value, Time.TimeSeries.fromObservations (csv.Rows |> Seq.map(fun r -> float r.Lynx, r.Year)) ] |> Map.ofList(* output: +map + [(ShortCode "hare", + FixedTimeSeries + ((19.58, 1/1/1845 12:00:00 AM), + TimeSteps + [|(19.6, 365.00:00:00); (19.61, 365.00:00:00); (11.99, 365.00:00:00); + (28.04, 366.00:00:00); (58.0, 365.00:00:00); (74.6, 365.00:00:00); + (75.09, 365.00:00:00); (88.48, 366.00:00:00); (61.28, 365.00:00:00); + (74.67, 365.00:00:00); (88.06, 365.00:00:00); (68.51, 366.00:00:00); + (32.19, 365.00:00:00); (12.64, 365.00:00:00); (21.49, 365.00:00:00); + (30.35, 366.00:00:00); (2.18, 365.00:00:00); (152.65, 365.00:00:00); + (148.36, 365.00:00:00); (85.81, 366.00:00:00); (41.41, 365.00:00:00); + (14.75, 365.00:00:00); (2.28, 365.00:00:00); (5.91, 366.00:00:00); + (9.95, 365.00:00:00); (10.44, 365.00:00:00); (70.64, 365.00:00:00); + (50.12, 366.00:00:00); (50.13, 365.00:00:00); (101.25, 365.00:00:00); + (97.12, 365.00:00:00); (86.51, 366.00:00:00); (72.17, 365.00:00:00); + (38.32, 365.00:00:00); (10.11, 365.00:00:00); (7.74, 366.00:00:00); + (9.67, 365.00:00:00); (43.12, 365.00:00:00); (52.21, 365.00:00:00); + (134.85, 366.00:00:00); (134.86, 365.00:00:00); (103.79, 365.00:00:00); + (46.1, 365.00:00:00); (15.03, 366.00:00:00); (24.2, 365.00:00:00); + (41.65, 365.00:00:00); (52.34, 365.00:00:00); (53.78, 366.00:00:00); + (70.4, 365.00:00:00); (85.81, 365.00:00:00); (56.69, 365.00:00:00); + (16.59, 366.00:00:00); (6.16, 365.00:00:00); (2.3, 365.00:00:00); + (12.82, 365.00:00:00); (4.72, 365.00:00:00); (4.73, 365.00:00:00); + (37.22, 365.00:00:00); (69.72, 365.00:00:00); (57.78, 366.00:00:00); + (28.68, 365.00:00:00); (23.37, 365.00:00:00); (21.54, 365.00:00:00); + (26.34, 366.00:00:00); (53.1, 365.00:00:00); (68.48, 365.00:00:00); + (75.58, 365.00:00:00); (57.92, 366.00:00:00); (40.97, 365.00:00:00); + (24.95, 365.00:00:00); (12.59, 365.00:00:00); (4.97, 366.00:00:00); + (4.5, 365.00:00:00); (11.21, 365.00:00:00); (56.6, 365.00:00:00); + (69.63, 366.00:00:00); (77.74, 365.00:00:00); (80.53, 365.00:00:00); + (73.38, 365.00:00:00); (36.93, 366.00:00:00); (4.64, 365.00:00:00); + (2.54, 365.00:00:00); (1.8, 365.00:00:00); (2.39, 366.00:00:00); + (4.23, 365.00:00:00); (19.52, 365.00:00:00); (82.11, 365.00:00:00); + (89.76, 366.00:00:00); (81.66, 365.00:00:00); (15.76, 365.00:00:00)|])); + (ShortCode "lynx", + FixedTimeSeries + ((30.09, 1/1/1845 12:00:00 AM), + TimeSteps + [|(45.15, 365.00:00:00); (49.15, 365.00:00:00); (39.52, 365.00:00:00); + (21.23, 366.00:00:00); (8.42, 365.00:00:00); (5.56, 365.00:00:00); + (5.08, 365.00:00:00); (10.17, 366.00:00:00); (19.6, 365.00:00:00); + (32.91, 365.00:00:00); (34.38, 365.00:00:00); (29.59, 366.00:00:00); + (21.3, 365.00:00:00); (13.69, 365.00:00:00); (7.65, 365.00:00:00); + (4.08, 366.00:00:00); (4.09, 365.00:00:00); (14.33, 365.00:00:00); + (38.22, 365.00:00:00); (60.78, 366.00:00:00); (70.77, 365.00:00:00); + (72.77, 365.00:00:00); (42.68, 365.00:00:00); (16.39, 366.00:00:00); + (9.83, 365.00:00:00); (5.8, 365.00:00:00); (5.26, 365.00:00:00); + (18.91, 366.00:00:00); (30.95, 365.00:00:00); (31.18, 365.00:00:00); + (46.34, 365.00:00:00); (45.77, 366.00:00:00); (44.15, 365.00:00:00); + (36.33, 365.00:00:00); (12.03, 365.00:00:00); (12.6, 366.00:00:00); + (18.34, 365.00:00:00); (35.14, 365.00:00:00); (43.77, 365.00:00:00); + (65.69, 366.00:00:00); (79.35, 365.00:00:00); (51.65, 365.00:00:00); + (32.59, 365.00:00:00); (22.45, 366.00:00:00); (16.16, 365.00:00:00); + (14.12, 365.00:00:00); (20.38, 365.00:00:00); (33.33, 366.00:00:00); + (46.0, 365.00:00:00); (51.41, 365.00:00:00); (46.43, 365.00:00:00); + (33.68, 366.00:00:00); (18.01, 365.00:00:00); (8.86, 365.00:00:00); + (7.13, 365.00:00:00); (9.47, 365.00:00:00); (14.86, 365.00:00:00); + (31.47, 365.00:00:00); (60.57, 365.00:00:00); (63.51, 366.00:00:00); + (54.7, 365.00:00:00); (6.3, 365.00:00:00); (3.41, 365.00:00:00); + (5.44, 366.00:00:00); (11.65, 365.00:00:00); (20.35, 365.00:00:00); + (32.88, 365.00:00:00); (39.55, 366.00:00:00); (43.36, 365.00:00:00); + (40.83, 365.00:00:00); (30.36, 365.00:00:00); (17.18, 366.00:00:00); + (6.82, 365.00:00:00); (3.19, 365.00:00:00); (3.52, 365.00:00:00); + (9.94, 366.00:00:00); (20.3, 365.00:00:00); (31.99, 365.00:00:00); + (42.36, 365.00:00:00); (49.08, 366.00:00:00); (53.99, 365.00:00:00); + (52.25, 365.00:00:00); (37.7, 365.00:00:00); (19.14, 366.00:00:00); + (6.98, 365.00:00:00); (8.31, 365.00:00:00); (16.01, 365.00:00:00); + (24.82, 366.00:00:00); (29.7, 365.00:00:00); (35.4, 365.00:00:00)|]))]*) +(** +Once the data are in Bristlecone `TimeSeries` we can run `Bristlecone.fit`, which is +the main fitting function of the Bristlecone library. + +*) +let endCondition = Optimisation.EndConditions.afterIteration 10000 + +let result = + ``predator-prey`` + |> Bristlecone.fit engine endCondition data(* output: +Ok + { ResultId = e9fe5d3b-52c7-4b3c-967f-6267d999d54e + Likelihood = 161725.5183 + Parameters = + Pool + (map + [(ShortCode "Δ", + Parameter (Unconstrained, Detached, Estimated -0.03600395794)); + (ShortCode "α", + Parameter (Unconstrained, Detached, Estimated 0.05889427162)); + (ShortCode "β", + Parameter (Unconstrained, Detached, Estimated -0.0572017005)); + (ShortCode "γ", + Parameter (Unconstrained, Detached, Estimated 0.3963112829)); + (ShortCode "ρ", + Parameter (Unconstrained, Detached, Estimated -0.7329319289)); + (ShortCode "σ[x]", + Parameter (PositiveOnly, Detached, Estimated 0.0402635584)); + (ShortCode "σ[y]", + Parameter (PositiveOnly, Detached, Estimated 0.1679047933))]) + Series = + map + [(ShortCode "hare", + FixedTimeSeries + (({ Fit = 48.97948066 + Obs = 19.58 }, 1/1/1845 12:00:00 AM), + TimeSteps + [|({ Fit = 55.28946519 + Obs = 19.6 }, 365.00:00:00); ({ Fit = 59.64672094 + Obs = 19.61 }, 365.00:00:00); + ({ Fit = 63.11542067 + Obs = 11.99 }, 365.00:00:00); ({ Fit = 65.48611048 + Obs = 28.04 }, 366.00:00:00); + ({ Fit = 65.38963298 + Obs = 58.0 }, 365.00:00:00); ({ Fit = 59.36101124 + Obs = 74.6 }, 365.00:00:00); + ({ Fit = 47.80253297 + Obs = 75.09 }, 365.00:00:00); ({ Fit = 49.43514849 + Obs = 88.48 }, 366.00:00:00); + ({ Fit = 48.31813548 + Obs = 61.28 }, 365.00:00:00); ({ Fit = 48.96762773 + Obs = 74.67 }, 365.00:00:00); + ({ Fit = 48.49743848 + Obs = 88.06 }, 365.00:00:00); ({ Fit = 48.7669053 + Obs = 68.51 }, 366.00:00:00); + ({ Fit = 48.55866582 + Obs = 32.19 }, 365.00:00:00); ({ Fit = 48.6726493 + Obs = 12.64 }, 365.00:00:00); + ({ Fit = 48.57712909 + Obs = 21.49 }, 365.00:00:00); ({ Fit = 48.62548059 + Obs = 30.35 }, 366.00:00:00); + ({ Fit = 48.5804187 + Obs = 2.18 }, 365.00:00:00); ({ Fit = 48.60065825 + Obs = 152.65 }, 365.00:00:00); + ({ Fit = 48.57885336 + Obs = 148.36 }, 365.00:00:00); ({ Fit = 48.58703836 + Obs = 85.81 }, 366.00:00:00); + ({ Fit = 48.57621704 + Obs = 41.41 }, 365.00:00:00); ({ Fit = 48.57929735 + Obs = 14.75 }, 365.00:00:00); + ({ Fit = 48.5737826 + Obs = 2.28 }, 365.00:00:00); ({ Fit = 48.57476603 + Obs = 5.91 }, 366.00:00:00); + ({ Fit = 48.57187543 + Obs = 9.95 }, 365.00:00:00); ({ Fit = 48.57204853 + Obs = 10.44 }, 365.00:00:00); + ({ Fit = 48.57048838 + Obs = 70.64 }, 365.00:00:00); ({ Fit = 48.57038684 + Obs = 50.12 }, 366.00:00:00); + ({ Fit = 48.56951967 + Obs = 50.13 }, 365.00:00:00); ({ Fit = 48.56935516 + Obs = 101.25 }, 365.00:00:00); + ({ Fit = 48.56885941 + Obs = 97.12 }, 365.00:00:00); ({ Fit = 48.5687071 + Obs = 86.51 }, 366.00:00:00); + ({ Fit = 48.56841632 + Obs = 72.17 }, 365.00:00:00); ({ Fit = 48.56829641 + Obs = 38.32 }, 365.00:00:00); + ({ Fit = 48.568122 + Obs = 10.11 }, 365.00:00:00); ({ Fit = 48.56803443 + Obs = 7.74 }, 366.00:00:00); + ({ Fit = 48.56792786 + Obs = 9.67 }, 365.00:00:00); ({ Fit = 48.56786651 + Obs = 43.12 }, 365.00:00:00); + ({ Fit = 48.56780041 + Obs = 52.21 }, 365.00:00:00); ({ Fit = 48.5677585 + Obs = 134.85 }, 366.00:00:00); + ({ Fit = 48.56771702 + Obs = 134.86 }, 365.00:00:00); ({ Fit = 48.56768885 + Obs = 103.79 }, 365.00:00:00); + ({ Fit = 48.56766258 + Obs = 46.1 }, 365.00:00:00); ({ Fit = 48.56764385 + Obs = 15.03 }, 366.00:00:00); + ({ Fit = 48.5676271 + Obs = 24.2 }, 365.00:00:00); ({ Fit = 48.56761473 + Obs = 41.65 }, 365.00:00:00); + ({ Fit = 48.567604 + Obs = 52.34 }, 365.00:00:00); ({ Fit = 48.56759588 + Obs = 53.78 }, 366.00:00:00); + ({ Fit = 48.56758898 + Obs = 70.4 }, 365.00:00:00); ({ Fit = 48.56758367 + Obs = 85.81 }, 365.00:00:00); + ({ Fit = 48.56757922 + Obs = 56.69 }, 365.00:00:00); ({ Fit = 48.56757575 + Obs = 16.59 }, 366.00:00:00); + ({ Fit = 48.56757287 + Obs = 6.16 }, 365.00:00:00); ({ Fit = 48.56757061 + Obs = 2.3 }, 365.00:00:00); + ({ Fit = 48.56756875 + Obs = 12.82 }, 365.00:00:00); ({ Fit = 48.56756728 + Obs = 4.72 }, 365.00:00:00); + ({ Fit = 48.56756607 + Obs = 4.73 }, 365.00:00:00); ({ Fit = 48.56756512 + Obs = 37.22 }, 365.00:00:00); + ({ Fit = 48.56756434 + Obs = 69.72 }, 365.00:00:00); ({ Fit = 48.56756371 + Obs = 57.78 }, 366.00:00:00); + ({ Fit = 48.56756321 + Obs = 28.68 }, 365.00:00:00); ({ Fit = 48.5675628 + Obs = 23.37 }, 365.00:00:00); + ({ Fit = 48.56756248 + Obs = 21.54 }, 365.00:00:00); ({ Fit = 48.56756221 + Obs = 26.34 }, 366.00:00:00); + ({ Fit = 48.567562 + Obs = 53.1 }, 365.00:00:00); ({ Fit = 48.56756183 + Obs = 68.48 }, 365.00:00:00); + ({ Fit = 48.56756169 + Obs = 75.58 }, 365.00:00:00); ({ Fit = 48.56756158 + Obs = 57.92 }, 366.00:00:00); + ({ Fit = 48.56756149 + Obs = 40.97 }, 365.00:00:00); ({ Fit = 48.56756142 + Obs = 24.95 }, 365.00:00:00); + ({ Fit = 48.56756136 + Obs = 12.59 }, 365.00:00:00); ({ Fit = 48.56756131 + Obs = 4.97 }, 366.00:00:00); + ({ Fit = 48.56756128 + Obs = 4.5 }, 365.00:00:00); ({ Fit = 48.56756125 + Obs = 11.21 }, 365.00:00:00); + ({ Fit = 48.56756122 + Obs = 56.6 }, 365.00:00:00); ({ Fit = 48.5675612 + Obs = 69.63 }, 366.00:00:00); + ({ Fit = 48.56756119 + Obs = 77.74 }, 365.00:00:00); ({ Fit = 48.56756117 + Obs = 80.53 }, 365.00:00:00); + ({ Fit = 48.56756116 + Obs = 73.38 }, 365.00:00:00); ({ Fit = 48.56756115 + Obs = 36.93 }, 366.00:00:00); + ({ Fit = 48.56756115 + Obs = 4.64 }, 365.00:00:00); ({ Fit = 48.56756114 + Obs = 2.54 }, 365.00:00:00); + ({ Fit = 48.56756114 + Obs = 1.8 }, 365.00:00:00); ({ Fit = 48.56756113 + Obs = 2.39 }, 366.00:00:00); + ({ Fit = 48.56756113 + Obs = 4.23 }, 365.00:00:00); ({ Fit = 48.56756113 + Obs = 19.52 }, 365.00:00:00); + ({ Fit = 48.56756113 + Obs = 82.11 }, 365.00:00:00); ({ Fit = 48.56756113 + Obs = 89.76 }, 366.00:00:00); + ({ Fit = 48.56756113 + Obs = 81.66 }, 365.00:00:00); ({ Fit = 48.56756112 + Obs = 15.76 }, 365.00:00:00)|])); + (ShortCode "lynx", + FixedTimeSeries + (({ Fit = 6.777390842 + Obs = 30.09 }, 1/1/1845 12:00:00 AM), + TimeSteps + [|({ Fit = 4.186350509 + Obs = 45.15 }, 365.00:00:00); ({ Fit = 3.417986048 + Obs = 49.15 }, 365.00:00:00); + ({ Fit = 3.506861 + Obs = 39.52 }, 365.00:00:00); ({ Fit = 4.510855681 + Obs = 21.23 }, 366.00:00:00); + ({ Fit = 7.255981932 + Obs = 8.42 }, 365.00:00:00); ({ Fit = 13.77009301 + Obs = 5.56 }, 365.00:00:00); + ({ Fit = 22.94139975 + Obs = 5.08 }, 365.00:00:00); ({ Fit = 21.81606632 + Obs = 10.17 }, 366.00:00:00); + ({ Fit = 22.69996507 + Obs = 19.6 }, 365.00:00:00); ({ Fit = 22.27096224 + Obs = 32.91 }, 365.00:00:00); + ({ Fit = 22.65570078 + Obs = 34.38 }, 365.00:00:00); ({ Fit = 22.48901678 + Obs = 29.59 }, 366.00:00:00); + ({ Fit = 22.66714995 + Obs = 21.3 }, 365.00:00:00); ({ Fit = 22.603698 + Obs = 13.69 }, 365.00:00:00); + ({ Fit = 22.69011213 + Obs = 7.65 }, 365.00:00:00); ({ Fit = 22.66773814 + Obs = 4.08 }, 366.00:00:00); + ({ Fit = 22.71136497 + Obs = 4.09 }, 365.00:00:00); ({ Fit = 22.70501686 + Obs = 14.33 }, 365.00:00:00); + ({ Fit = 22.72786185 + Obs = 38.22 }, 365.00:00:00); ({ Fit = 22.72737247 + Obs = 60.78 }, 366.00:00:00); + ({ Fit = 22.73975277 + Obs = 70.77 }, 365.00:00:00); ({ Fit = 22.74107167 + Obs = 72.77 }, 365.00:00:00); + ({ Fit = 22.74799912 + Obs = 42.68 }, 365.00:00:00); ({ Fit = 22.74959988 + Obs = 16.39 }, 366.00:00:00); + ({ Fit = 22.75359056 + Obs = 9.83 }, 365.00:00:00); ({ Fit = 22.75497058 + Obs = 5.8 }, 365.00:00:00); + ({ Fit = 22.75732884 + Obs = 5.26 }, 365.00:00:00); ({ Fit = 22.75838137 + Obs = 18.91 }, 366.00:00:00); + ({ Fit = 22.7598053 + Obs = 30.95 }, 365.00:00:00); ({ Fit = 22.76056076 + Obs = 31.18 }, 365.00:00:00); + ({ Fit = 22.76143576 + Obs = 46.34 }, 365.00:00:00); ({ Fit = 22.76195949 + Obs = 45.77 }, 366.00:00:00); + ({ Fit = 22.76250469 + Obs = 44.15 }, 365.00:00:00); ({ Fit = 22.76286007 + Obs = 36.33 }, 365.00:00:00); + ({ Fit = 22.76320344 + Obs = 12.03 }, 365.00:00:00); ({ Fit = 22.76344125 + Obs = 12.6 }, 366.00:00:00); + ({ Fit = 22.76365926 + Obs = 18.34 }, 365.00:00:00); ({ Fit = 22.76381693 + Obs = 35.14 }, 365.00:00:00); + ({ Fit = 22.76395619 + Obs = 43.77 }, 365.00:00:00); ({ Fit = 22.76406006 + Obs = 65.69 }, 366.00:00:00); + ({ Fit = 22.7641494 + Obs = 79.35 }, 365.00:00:00); ({ Fit = 22.76421753 + Obs = 51.65 }, 365.00:00:00); + ({ Fit = 22.76427505 + Obs = 32.59 }, 365.00:00:00); ({ Fit = 22.7643196 + Obs = 22.45 }, 366.00:00:00); + ({ Fit = 22.76435671 + Obs = 16.16 }, 365.00:00:00); ({ Fit = 22.76438577 + Obs = 14.12 }, 365.00:00:00); + ({ Fit = 22.76440976 + Obs = 20.38 }, 365.00:00:00); ({ Fit = 22.7644287 + Obs = 33.33 }, 366.00:00:00); + ({ Fit = 22.76444422 + Obs = 46.0 }, 365.00:00:00); ({ Fit = 22.76445654 + Obs = 51.41 }, 365.00:00:00); + ({ Fit = 22.76446659 + Obs = 46.43 }, 365.00:00:00); ({ Fit = 22.76447461 + Obs = 33.68 }, 366.00:00:00); + ({ Fit = 22.76448112 + Obs = 18.01 }, 365.00:00:00); ({ Fit = 22.76448633 + Obs = 8.86 }, 365.00:00:00); + ({ Fit = 22.76449056 + Obs = 7.13 }, 365.00:00:00); ({ Fit = 22.76449394 + Obs = 9.47 }, 365.00:00:00); + ({ Fit = 22.76449668 + Obs = 14.86 }, 365.00:00:00); ({ Fit = 22.76449888 + Obs = 31.47 }, 365.00:00:00); + ({ Fit = 22.76450066 + Obs = 60.57 }, 365.00:00:00); ({ Fit = 22.76450209 + Obs = 63.51 }, 366.00:00:00); + ({ Fit = 22.76450324 + Obs = 54.7 }, 365.00:00:00); ({ Fit = 22.76450417 + Obs = 6.3 }, 365.00:00:00); + ({ Fit = 22.76450491 + Obs = 3.41 }, 365.00:00:00); ({ Fit = 22.76450552 + Obs = 5.44 }, 366.00:00:00); + ({ Fit = 22.764506 + Obs = 11.65 }, 365.00:00:00); ({ Fit = 22.76450639 + Obs = 20.35 }, 365.00:00:00); + ({ Fit = 22.76450671 + Obs = 32.88 }, 365.00:00:00); ({ Fit = 22.76450696 + Obs = 39.55 }, 366.00:00:00); + ({ Fit = 22.76450717 + Obs = 43.36 }, 365.00:00:00); ({ Fit = 22.76450733 + Obs = 40.83 }, 365.00:00:00); + ({ Fit = 22.76450746 + Obs = 30.36 }, 365.00:00:00); ({ Fit = 22.76450757 + Obs = 17.18 }, 366.00:00:00); + ({ Fit = 22.76450766 + Obs = 6.82 }, 365.00:00:00); ({ Fit = 22.76450773 + Obs = 3.19 }, 365.00:00:00); + ({ Fit = 22.76450778 + Obs = 3.52 }, 365.00:00:00); ({ Fit = 22.76450783 + Obs = 9.94 }, 366.00:00:00); + ({ Fit = 22.76450786 + Obs = 20.3 }, 365.00:00:00); ({ Fit = 22.76450789 + Obs = 31.99 }, 365.00:00:00); + ({ Fit = 22.76450792 + Obs = 42.36 }, 365.00:00:00); ({ Fit = 22.76450793 + Obs = 49.08 }, 366.00:00:00); + ({ Fit = 22.76450795 + Obs = 53.99 }, 365.00:00:00); ({ Fit = 22.76450796 + Obs = 52.25 }, 365.00:00:00); + ({ Fit = 22.76450797 + Obs = 37.7 }, 365.00:00:00); ({ Fit = 22.76450798 + Obs = 19.14 }, 366.00:00:00); + ({ Fit = 22.76450799 + Obs = 6.98 }, 365.00:00:00); ({ Fit = 22.76450799 + Obs = 8.31 }, 365.00:00:00); + ({ Fit = 22.764508 + Obs = 16.01 }, 365.00:00:00); ({ Fit = 22.764508 + Obs = 24.82 }, 366.00:00:00); + ({ Fit = 22.764508 + Obs = 29.7 }, 365.00:00:00); ({ Fit = 22.764508 + Obs = 35.4 }, 365.00:00:00)|]))] + Trace = + [(161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); + (161725.5183, + [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829; + -0.7329319289; 0.0402635584; 0.1679047933|]); ...] + InternalDynamics = + Some + (map + [(ShortCode "hare", + [|48.97948066; 55.28946519; 59.64672094; 63.11542067; 65.48611048; + 65.38963298; 59.36101124; 47.80253297; 49.43514849; 48.31813548; + 48.96762773; 48.49743848; 48.7669053; 48.55866582; 48.6726493; + 48.57712909; 48.62548059; 48.5804187; 48.60065825; 48.57885336; + 48.58703836; 48.57621704; 48.57929735; 48.5737826; 48.57476603; + 48.57187543; 48.57204853; 48.57048838; 48.57038684; 48.56951967; + 48.56935516; 48.56885941; 48.5687071; 48.56841632; 48.56829641; + 48.568122; 48.56803443; 48.56792786; 48.56786651; 48.56780041; + 48.5677585; 48.56771702; 48.56768885; 48.56766258; 48.56764385; + 48.5676271; 48.56761473; 48.567604; 48.56759588; 48.56758898; + 48.56758367; 48.56757922; 48.56757575; 48.56757287; 48.56757061; + 48.56756875; 48.56756728; 48.56756607; 48.56756512; 48.56756434; + 48.56756371; 48.56756321; 48.5675628; 48.56756248; 48.56756221; + 48.567562; 48.56756183; 48.56756169; 48.56756158; 48.56756149; + 48.56756142; 48.56756136; 48.56756131; 48.56756128; 48.56756125; + 48.56756122; 48.5675612; 48.56756119; 48.56756117; 48.56756116; + 48.56756115; 48.56756115; 48.56756114; 48.56756114; 48.56756113; + 48.56756113; 48.56756113; 48.56756113; 48.56756113; 48.56756113; + 48.56756112|]); + (ShortCode "lynx", + [|6.777390842; 4.186350509; 3.417986048; 3.506861; 4.510855681; + 7.255981932; 13.77009301; 22.94139975; 21.81606632; 22.69996507; + 22.27096224; 22.65570078; 22.48901678; 22.66714995; 22.603698; + 22.69011213; 22.66773814; 22.71136497; 22.70501686; 22.72786185; + 22.72737247; 22.73975277; 22.74107167; 22.74799912; 22.74959988; + 22.75359056; 22.75497058; 22.75732884; 22.75838137; 22.7598053; + 22.76056076; 22.76143576; 22.76195949; 22.76250469; 22.76286007; + 22.76320344; 22.76344125; 22.76365926; 22.76381693; 22.76395619; + 22.76406006; 22.7641494; 22.76421753; 22.76427505; 22.7643196; + 22.76435671; 22.76438577; 22.76440976; 22.7644287; 22.76444422; + 22.76445654; 22.76446659; 22.76447461; 22.76448112; 22.76448633; + 22.76449056; 22.76449394; 22.76449668; 22.76449888; 22.76450066; + 22.76450209; 22.76450324; 22.76450417; 22.76450491; 22.76450552; + 22.764506; 22.76450639; 22.76450671; 22.76450696; 22.76450717; + 22.76450733; 22.76450746; 22.76450757; 22.76450766; 22.76450773; + 22.76450778; 22.76450783; 22.76450786; 22.76450789; 22.76450792; + 22.76450793; 22.76450795; 22.76450796; 22.76450797; 22.76450798; + 22.76450799; 22.76450799; 22.764508; 22.764508; 22.764508; + 22.764508|])]) }*) +(** +### Inspecting the model fit + +The `Bristlecone.fit` function returns an `EstimationResult`, which contains some +key information that may be used to inspect the model fit: + +* Likelihood. The minimum likelihood identified during optimisation. + +* Parameters. The parameter set (**θ**) identified at the minimum likelihood. + +* Series. A TimeSeries for each variable in the model, which at each time point contains paired Modelled-Observed values. + +* Trace. The likelihood and **θ** that occurred at each step in optimisation, with the latest first. + +* Internal Dynamics. Not relevant for this simple model. + +First, we can use the `Series` to inspect by eye the model fit versus the observed time-series: + +
        + +**NB: this documentation is auto-generated so we cannot comment directly on the randomly generated scenario.** + +Next, we can examine the traces to see how parameter values evolved over the course of +the optimisation routine: + +*) +Graphing.parameterTrace result(* output: +
        *) + diff --git a/examples/predator-prey.html b/examples/predator-prey.html new file mode 100644 index 0000000..e081f0a --- /dev/null +++ b/examples/predator-prey.html @@ -0,0 +1,1593 @@ + + + + + + + + + + + + + + + + + + Predator-Prey Dynamics | bristlecone + + + + + + + + + + + + +
        + +
        + + + + + +
        +
        + +
        +
        + +

        Script  +Notebook

        +

        Predator-Prey Dynamics: Snowshoe Hare and Lynx

        +

        Here we use the classic example of snowshoe hare and lynx predator-prey dynamics, +to demonstrate the basic functions of Bristlecone. The dataset is a 90-year +time-series of snowshoe hare and lynx pelts purchased by the +Hudson's Bay Company of Canada. Data is in 1000s.

        +

        To get started, we first load and open the Bristlecone library in +an F# script file (.fsx):

        +
        open Bristlecone            // Opens Bristlecone core library and estimation engine
        +open Bristlecone.Language   // Open the language for writing Bristlecone models
        +
        +

        Defining the ecological model

        +

        In Bristlecone, a single ecological model (representing a single hypothesis) +is defined through the ModelSystem type. A ModelSystem needs to include three key +components:

        +
          +
        • Model equations. When working in continuous time, these are a system of Ordinary Differential Equations (ODEs).
        • +
        • Parameters to be estimated. You must specify the starting bounds and constraints for every parameter included in the model equations.
        • +
        • Likelihood function. The (negative log) likelihood function -logL represents the probability of observing the data given the parameter set. We use a negative log likelihood function, which is then minimised during optimisation.
        • +
        +

        In this example, we demonstrate using the Lotka–Volterra predator–prey model as the +model system. For the -logL function we use a bivariate normal negative log likelihood function. +This -logL function assumes normally-distributed observation error around each observation +at each time-point, for both the lynx and hare data. The -logL function contains +three parameters that are to be estimated alongside the deterministic model: the variability +in lynx data, the variability in hare data, and their covariance.

        +
        let ``predator-prey`` =
        +
        +    let ``dh/dt`` = Parameter "α" * This - Parameter "β" * This * Environment "lynx"
        +    let ``dl/dt`` = - Parameter "γ" * This + Parameter "Δ" * Environment "hare" * This
        +
        +    Model.empty
        +    |> Model.addEquation       "hare"   ``dh/dt``
        +    |> Model.addEquation       "lynx"   ``dl/dt``
        +
        +    |> Model.estimateParameter "α"      noConstraints 0.01 1.00    // Natural growth rate of hares in absence of predation
        +    |> Model.estimateParameter "β"      noConstraints 0.01 1.00    // Death rate per encounter of hares due to predation
        +    |> Model.estimateParameter "Δ"      noConstraints 0.01 0.20    // Efficiency of turning predated hares into lynx
        +    |> Model.estimateParameter "γ"      noConstraints 0.01 0.20    // Natural death rate of lynx in the absence of food
        +
        +    |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares ["hare"; "lynx"])
        +    |> Model.estimateParameter  "ρ"     noConstraints -0.500 0.500
        +    |> Model.estimateParameter  "σ[x]"  notNegative 0.001 0.100
        +    |> Model.estimateParameter  "σ[y]"  notNegative 0.001 0.100
        +
        +    |> Model.compile
        +
        +    // TODO Error when setting constraints. Optim allows them to go negative!
        +
        +

        Setting up the Bristlecone Engine

        +

        A bristlecone engine provides a fixed setup for estimating parameters from data. +Use the same engine for all model fits within a single study. +This engine uses a gradident descent method (Nelder Mead simplex), and a basic +Runge-Kutta 4 integration method provided by MathNet Numerics.

        +
        let engine = 
        +    Bristlecone.mkContinuous
        +    |> Bristlecone.withTunedMCMC []
        +    |> Bristlecone.withContinuousTime Integration.MathNet.integrate
        +    |> Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint
        +    |> Bristlecone.withSeed 1000 // We are setting a seed for this example - see below
        +
        +

        Note. We have set a seed for random number generation for this worked example. This ensures that the results are the same each time this documentation is generated.

        +

        Does it all work? Testing the engine and model

        +

        Before being confident in the ability of our estimation engine to +be able to arrive at the correct solution, we must run a full test +of the model and estimation engine.

        +

        Bristlecone includes the Bristlecone.testModel function, which +we use here. Given a model system and estimation engine, the function +generates a random parameter set (θ) many times; for each θ, the +'true' time-series are generated. The test result indicates the effectiveness +of the configuration at estimating θ given the auto-generated +time-series. If there is divergence, there is likely an +issue with your model or the Bristlecone configuration.

        +

        Bristlecone includes many settings to configure the test +procedure. A simple test configuration is set as Test.defaultSettings, +but here we will configure some additional settings:

        +
        let testSettings =
        +    Test.create
        +    |> Test.addStartValues [
        +        "hare", 50.
        +        "lynx", 75. ]
        +    |> Test.addNoise (Test.Noise.tryAddNormal "σ[y]" "lynx")
        +    |> Test.addNoise (Test.Noise.tryAddNormal "σ[x]" "hare")
        +    |> Test.addGenerationRules [
        +        Test.GenerationRules.alwaysLessThan 10000. "lynx"
        +        Test.GenerationRules.alwaysLessThan 10000. "hare" ]
        +    |> Test.withTimeSeriesLength 30
        +    |> Test.endWhen (Optimisation.EndConditions.afterIteration 1)
        +
        +

        In our TestSettings, we have specified the initial time point (t = 0) +for both modelled time-series. We have also added noise around +each generated time-series, and specified that each time-series +should be 30 years in length.

        +

        With these test settings, we can now run the test.

        +
        let testResult =
        +    ``predator-prey`` 
        +    |> Bristlecone.testModel engine testSettings
        +
        +
        ##1## GeneralEvent "Attempting to generate parameter set."
        +##1## GeneralEvent "The data must comply with 2 rules after 50000 tries."
        +##1## GeneralEvent
        +  "Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1)."
        +##1## DebugEvent
        +  "Observations occur on a fixed temporal resolution: Years PositiveInt 1."
        +##1## DebugEvent
        +  "No environmental forcing data was supplied. Solving using time points of observations."
        +##1## GeneralEvent
        +  "Skipping optimisation: only the result of the given parameters will be computed"
        +##1## DebugEvent
        +  "Observations occur on a fixed temporal resolution: Years PositiveInt 1."
        +##1## DebugEvent
        +  "No environmental forcing data was supplied. Solving using time points of observations."
        +##1## DebugEvent
        +  "Observations occur on a fixed temporal resolution: Years PositiveInt 1."
        +##1## DebugEvent
        +  "No environmental forcing data was supplied. Solving using time points of observations."
        +##1## GeneralEvent
        +  "Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1)."
        +##1## DebugEvent
        +  "Observations occur on a fixed temporal resolution: Years PositiveInt 1."
        +##1## DebugEvent
        +  "No environmental forcing data was supplied. Solving using time points of observations."
        +##1## GeneralEvent
        +  "[Optimisation] Initial theta is [|0.04560414322; 0.4458347169; 0.007666657133; 0.1825123468; -0.091774904;
        +  0.02763088772; 0.06570124545|]"
        +##1## GeneralEvent "[Optimisation] Starting MCMC Random Walk"
        +##1## DebugEvent
        +  "Observations occur on a fixed temporal resolution: Years PositiveInt 1."
        +##1## DebugEvent
        +  "No environmental forcing data was supplied. Solving using time points of observations."
        +##1## DebugEvent
        +  "Observations occur on a fixed temporal resolution: Years PositiveInt 1."
        +##1## DebugEvent
        +  "No environmental forcing data was supplied. Solving using time points of observations."
        +

        We can plot the test results to check the fit.

        +
        +

        Fitting to real data

        +

        First, we must load in the real data, which is in a CSV file. Here, we will use +the FSharp.Data type provider to read in the CSV file (see the FSharp.Data docs +for further information on how to use the library). We place the raw data into +a Bristlecone TimeSeries type using TimeSeries.fromObservations:

        +
        [<Literal>]
        +let ResolutionFolder = __SOURCE_DIRECTORY__
        +
        +type PopulationData = FSharp.Data.CsvProvider<"data/lynx-hare.csv", ResolutionFolder = ResolutionFolder>
        +
        +let data = 
        +    let csv = PopulationData.Load (__SOURCE_DIRECTORY__ + "/data/lynx-hare.csv")
        +    [ (code "hare").Value, Time.TimeSeries.fromObservations (csv.Rows |> Seq.map(fun r -> float r.Hare, r.Year))
        +      (code "lynx").Value, Time.TimeSeries.fromObservations (csv.Rows |> Seq.map(fun r -> float r.Lynx, r.Year)) ] |> Map.ofList
        +
        +
        map
        +  [(ShortCode "hare",
        +    FixedTimeSeries
        +  ((19.58, 1/1/1845 12:00:00 AM),
        +   TimeSteps
        +     [|(19.6, 365.00:00:00); (19.61, 365.00:00:00); (11.99, 365.00:00:00);
        +       (28.04, 366.00:00:00); (58.0, 365.00:00:00); (74.6, 365.00:00:00);
        +       (75.09, 365.00:00:00); (88.48, 366.00:00:00); (61.28, 365.00:00:00);
        +       (74.67, 365.00:00:00); (88.06, 365.00:00:00); (68.51, 366.00:00:00);
        +       (32.19, 365.00:00:00); (12.64, 365.00:00:00); (21.49, 365.00:00:00);
        +       (30.35, 366.00:00:00); (2.18, 365.00:00:00); (152.65, 365.00:00:00);
        +       (148.36, 365.00:00:00); (85.81, 366.00:00:00); (41.41, 365.00:00:00);
        +       (14.75, 365.00:00:00); (2.28, 365.00:00:00); (5.91, 366.00:00:00);
        +       (9.95, 365.00:00:00); (10.44, 365.00:00:00); (70.64, 365.00:00:00);
        +       (50.12, 366.00:00:00); (50.13, 365.00:00:00); (101.25, 365.00:00:00);
        +       (97.12, 365.00:00:00); (86.51, 366.00:00:00); (72.17, 365.00:00:00);
        +       (38.32, 365.00:00:00); (10.11, 365.00:00:00); (7.74, 366.00:00:00);
        +       (9.67, 365.00:00:00); (43.12, 365.00:00:00); (52.21, 365.00:00:00);
        +       (134.85, 366.00:00:00); (134.86, 365.00:00:00); (103.79, 365.00:00:00);
        +       (46.1, 365.00:00:00); (15.03, 366.00:00:00); (24.2, 365.00:00:00);
        +       (41.65, 365.00:00:00); (52.34, 365.00:00:00); (53.78, 366.00:00:00);
        +       (70.4, 365.00:00:00); (85.81, 365.00:00:00); (56.69, 365.00:00:00);
        +       (16.59, 366.00:00:00); (6.16, 365.00:00:00); (2.3, 365.00:00:00);
        +       (12.82, 365.00:00:00); (4.72, 365.00:00:00); (4.73, 365.00:00:00);
        +       (37.22, 365.00:00:00); (69.72, 365.00:00:00); (57.78, 366.00:00:00);
        +       (28.68, 365.00:00:00); (23.37, 365.00:00:00); (21.54, 365.00:00:00);
        +       (26.34, 366.00:00:00); (53.1, 365.00:00:00); (68.48, 365.00:00:00);
        +       (75.58, 365.00:00:00); (57.92, 366.00:00:00); (40.97, 365.00:00:00);
        +       (24.95, 365.00:00:00); (12.59, 365.00:00:00); (4.97, 366.00:00:00);
        +       (4.5, 365.00:00:00); (11.21, 365.00:00:00); (56.6, 365.00:00:00);
        +       (69.63, 366.00:00:00); (77.74, 365.00:00:00); (80.53, 365.00:00:00);
        +       (73.38, 365.00:00:00); (36.93, 366.00:00:00); (4.64, 365.00:00:00);
        +       (2.54, 365.00:00:00); (1.8, 365.00:00:00); (2.39, 366.00:00:00);
        +       (4.23, 365.00:00:00); (19.52, 365.00:00:00); (82.11, 365.00:00:00);
        +       (89.76, 366.00:00:00); (81.66, 365.00:00:00); (15.76, 365.00:00:00)|]));
        +   (ShortCode "lynx",
        +    FixedTimeSeries
        +  ((30.09, 1/1/1845 12:00:00 AM),
        +   TimeSteps
        +     [|(45.15, 365.00:00:00); (49.15, 365.00:00:00); (39.52, 365.00:00:00);
        +       (21.23, 366.00:00:00); (8.42, 365.00:00:00); (5.56, 365.00:00:00);
        +       (5.08, 365.00:00:00); (10.17, 366.00:00:00); (19.6, 365.00:00:00);
        +       (32.91, 365.00:00:00); (34.38, 365.00:00:00); (29.59, 366.00:00:00);
        +       (21.3, 365.00:00:00); (13.69, 365.00:00:00); (7.65, 365.00:00:00);
        +       (4.08, 366.00:00:00); (4.09, 365.00:00:00); (14.33, 365.00:00:00);
        +       (38.22, 365.00:00:00); (60.78, 366.00:00:00); (70.77, 365.00:00:00);
        +       (72.77, 365.00:00:00); (42.68, 365.00:00:00); (16.39, 366.00:00:00);
        +       (9.83, 365.00:00:00); (5.8, 365.00:00:00); (5.26, 365.00:00:00);
        +       (18.91, 366.00:00:00); (30.95, 365.00:00:00); (31.18, 365.00:00:00);
        +       (46.34, 365.00:00:00); (45.77, 366.00:00:00); (44.15, 365.00:00:00);
        +       (36.33, 365.00:00:00); (12.03, 365.00:00:00); (12.6, 366.00:00:00);
        +       (18.34, 365.00:00:00); (35.14, 365.00:00:00); (43.77, 365.00:00:00);
        +       (65.69, 366.00:00:00); (79.35, 365.00:00:00); (51.65, 365.00:00:00);
        +       (32.59, 365.00:00:00); (22.45, 366.00:00:00); (16.16, 365.00:00:00);
        +       (14.12, 365.00:00:00); (20.38, 365.00:00:00); (33.33, 366.00:00:00);
        +       (46.0, 365.00:00:00); (51.41, 365.00:00:00); (46.43, 365.00:00:00);
        +       (33.68, 366.00:00:00); (18.01, 365.00:00:00); (8.86, 365.00:00:00);
        +       (7.13, 365.00:00:00); (9.47, 365.00:00:00); (14.86, 365.00:00:00);
        +       (31.47, 365.00:00:00); (60.57, 365.00:00:00); (63.51, 366.00:00:00);
        +       (54.7, 365.00:00:00); (6.3, 365.00:00:00); (3.41, 365.00:00:00);
        +       (5.44, 366.00:00:00); (11.65, 365.00:00:00); (20.35, 365.00:00:00);
        +       (32.88, 365.00:00:00); (39.55, 366.00:00:00); (43.36, 365.00:00:00);
        +       (40.83, 365.00:00:00); (30.36, 365.00:00:00); (17.18, 366.00:00:00);
        +       (6.82, 365.00:00:00); (3.19, 365.00:00:00); (3.52, 365.00:00:00);
        +       (9.94, 366.00:00:00); (20.3, 365.00:00:00); (31.99, 365.00:00:00);
        +       (42.36, 365.00:00:00); (49.08, 366.00:00:00); (53.99, 365.00:00:00);
        +       (52.25, 365.00:00:00); (37.7, 365.00:00:00); (19.14, 366.00:00:00);
        +       (6.98, 365.00:00:00); (8.31, 365.00:00:00); (16.01, 365.00:00:00);
        +       (24.82, 366.00:00:00); (29.7, 365.00:00:00); (35.4, 365.00:00:00)|]))]
        +

        Once the data are in Bristlecone TimeSeries we can run Bristlecone.fit, which is +the main fitting function of the Bristlecone library.

        +
        let endCondition = Optimisation.EndConditions.afterIteration 10000
        +
        +let result = 
        +    ``predator-prey`` 
        +    |> Bristlecone.fit engine endCondition data
        +
        +
        Ok
        +  { ResultId = 9aa36fc8-dfbe-4c65-9682-d09883ba531c
        +    Likelihood = 161725.5183
        +    Parameters =
        +     Pool
        +       (map
        +          [(ShortCode "Δ",
        +            Parameter (Unconstrained, Detached, Estimated -0.03600395794));
        +           (ShortCode "α",
        +            Parameter (Unconstrained, Detached, Estimated 0.05889427162));
        +           (ShortCode "β",
        +            Parameter (Unconstrained, Detached, Estimated -0.0572017005));
        +           (ShortCode "γ",
        +            Parameter (Unconstrained, Detached, Estimated 0.3963112829));
        +           (ShortCode "ρ",
        +            Parameter (Unconstrained, Detached, Estimated -0.7329319289));
        +           (ShortCode "σ[x]",
        +            Parameter (PositiveOnly, Detached, Estimated 0.0402635584));
        +           (ShortCode "σ[y]",
        +            Parameter (PositiveOnly, Detached, Estimated 0.1679047933))])
        +    Series =
        +     map
        +       [(ShortCode "hare",
        +         FixedTimeSeries
        +  (({ Fit = 48.97948066
        +      Obs = 19.58 }, 1/1/1845 12:00:00 AM),
        +   TimeSteps
        +     [|({ Fit = 55.28946519
        +          Obs = 19.6 }, 365.00:00:00); ({ Fit = 59.64672094
        +                                          Obs = 19.61 }, 365.00:00:00);
        +       ({ Fit = 63.11542067
        +          Obs = 11.99 }, 365.00:00:00); ({ Fit = 65.48611048
        +                                           Obs = 28.04 }, 366.00:00:00);
        +       ({ Fit = 65.38963298
        +          Obs = 58.0 }, 365.00:00:00); ({ Fit = 59.36101124
        +                                          Obs = 74.6 }, 365.00:00:00);
        +       ({ Fit = 47.80253297
        +          Obs = 75.09 }, 365.00:00:00); ({ Fit = 49.43514849
        +                                           Obs = 88.48 }, 366.00:00:00);
        +       ({ Fit = 48.31813548
        +          Obs = 61.28 }, 365.00:00:00); ({ Fit = 48.96762773
        +                                           Obs = 74.67 }, 365.00:00:00);
        +       ({ Fit = 48.49743848
        +          Obs = 88.06 }, 365.00:00:00); ({ Fit = 48.7669053
        +                                           Obs = 68.51 }, 366.00:00:00);
        +       ({ Fit = 48.55866582
        +          Obs = 32.19 }, 365.00:00:00); ({ Fit = 48.6726493
        +                                           Obs = 12.64 }, 365.00:00:00);
        +       ({ Fit = 48.57712909
        +          Obs = 21.49 }, 365.00:00:00); ({ Fit = 48.62548059
        +                                           Obs = 30.35 }, 366.00:00:00);
        +       ({ Fit = 48.5804187
        +          Obs = 2.18 }, 365.00:00:00); ({ Fit = 48.60065825
        +                                          Obs = 152.65 }, 365.00:00:00);
        +       ({ Fit = 48.57885336
        +          Obs = 148.36 }, 365.00:00:00); ({ Fit = 48.58703836
        +                                            Obs = 85.81 }, 366.00:00:00);
        +       ({ Fit = 48.57621704
        +          Obs = 41.41 }, 365.00:00:00); ({ Fit = 48.57929735
        +                                           Obs = 14.75 }, 365.00:00:00);
        +       ({ Fit = 48.5737826
        +          Obs = 2.28 }, 365.00:00:00); ({ Fit = 48.57476603
        +                                          Obs = 5.91 }, 366.00:00:00);
        +       ({ Fit = 48.57187543
        +          Obs = 9.95 }, 365.00:00:00); ({ Fit = 48.57204853
        +                                          Obs = 10.44 }, 365.00:00:00);
        +       ({ Fit = 48.57048838
        +          Obs = 70.64 }, 365.00:00:00); ({ Fit = 48.57038684
        +                                           Obs = 50.12 }, 366.00:00:00);
        +       ({ Fit = 48.56951967
        +          Obs = 50.13 }, 365.00:00:00); ({ Fit = 48.56935516
        +                                           Obs = 101.25 }, 365.00:00:00);
        +       ({ Fit = 48.56885941
        +          Obs = 97.12 }, 365.00:00:00); ({ Fit = 48.5687071
        +                                           Obs = 86.51 }, 366.00:00:00);
        +       ({ Fit = 48.56841632
        +          Obs = 72.17 }, 365.00:00:00); ({ Fit = 48.56829641
        +                                           Obs = 38.32 }, 365.00:00:00);
        +       ({ Fit = 48.568122
        +          Obs = 10.11 }, 365.00:00:00); ({ Fit = 48.56803443
        +                                           Obs = 7.74 }, 366.00:00:00);
        +       ({ Fit = 48.56792786
        +          Obs = 9.67 }, 365.00:00:00); ({ Fit = 48.56786651
        +                                          Obs = 43.12 }, 365.00:00:00);
        +       ({ Fit = 48.56780041
        +          Obs = 52.21 }, 365.00:00:00); ({ Fit = 48.5677585
        +                                           Obs = 134.85 }, 366.00:00:00);
        +       ({ Fit = 48.56771702
        +          Obs = 134.86 }, 365.00:00:00); ({ Fit = 48.56768885
        +                                            Obs = 103.79 }, 365.00:00:00);
        +       ({ Fit = 48.56766258
        +          Obs = 46.1 }, 365.00:00:00); ({ Fit = 48.56764385
        +                                          Obs = 15.03 }, 366.00:00:00);
        +       ({ Fit = 48.5676271
        +          Obs = 24.2 }, 365.00:00:00); ({ Fit = 48.56761473
        +                                          Obs = 41.65 }, 365.00:00:00);
        +       ({ Fit = 48.567604
        +          Obs = 52.34 }, 365.00:00:00); ({ Fit = 48.56759588
        +                                           Obs = 53.78 }, 366.00:00:00);
        +       ({ Fit = 48.56758898
        +          Obs = 70.4 }, 365.00:00:00); ({ Fit = 48.56758367
        +                                          Obs = 85.81 }, 365.00:00:00);
        +       ({ Fit = 48.56757922
        +          Obs = 56.69 }, 365.00:00:00); ({ Fit = 48.56757575
        +                                           Obs = 16.59 }, 366.00:00:00);
        +       ({ Fit = 48.56757287
        +          Obs = 6.16 }, 365.00:00:00); ({ Fit = 48.56757061
        +                                          Obs = 2.3 }, 365.00:00:00);
        +       ({ Fit = 48.56756875
        +          Obs = 12.82 }, 365.00:00:00); ({ Fit = 48.56756728
        +                                           Obs = 4.72 }, 365.00:00:00);
        +       ({ Fit = 48.56756607
        +          Obs = 4.73 }, 365.00:00:00); ({ Fit = 48.56756512
        +                                          Obs = 37.22 }, 365.00:00:00);
        +       ({ Fit = 48.56756434
        +          Obs = 69.72 }, 365.00:00:00); ({ Fit = 48.56756371
        +                                           Obs = 57.78 }, 366.00:00:00);
        +       ({ Fit = 48.56756321
        +          Obs = 28.68 }, 365.00:00:00); ({ Fit = 48.5675628
        +                                           Obs = 23.37 }, 365.00:00:00);
        +       ({ Fit = 48.56756248
        +          Obs = 21.54 }, 365.00:00:00); ({ Fit = 48.56756221
        +                                           Obs = 26.34 }, 366.00:00:00);
        +       ({ Fit = 48.567562
        +          Obs = 53.1 }, 365.00:00:00); ({ Fit = 48.56756183
        +                                          Obs = 68.48 }, 365.00:00:00);
        +       ({ Fit = 48.56756169
        +          Obs = 75.58 }, 365.00:00:00); ({ Fit = 48.56756158
        +                                           Obs = 57.92 }, 366.00:00:00);
        +       ({ Fit = 48.56756149
        +          Obs = 40.97 }, 365.00:00:00); ({ Fit = 48.56756142
        +                                           Obs = 24.95 }, 365.00:00:00);
        +       ({ Fit = 48.56756136
        +          Obs = 12.59 }, 365.00:00:00); ({ Fit = 48.56756131
        +                                           Obs = 4.97 }, 366.00:00:00);
        +       ({ Fit = 48.56756128
        +          Obs = 4.5 }, 365.00:00:00); ({ Fit = 48.56756125
        +                                         Obs = 11.21 }, 365.00:00:00);
        +       ({ Fit = 48.56756122
        +          Obs = 56.6 }, 365.00:00:00); ({ Fit = 48.5675612
        +                                          Obs = 69.63 }, 366.00:00:00);
        +       ({ Fit = 48.56756119
        +          Obs = 77.74 }, 365.00:00:00); ({ Fit = 48.56756117
        +                                           Obs = 80.53 }, 365.00:00:00);
        +       ({ Fit = 48.56756116
        +          Obs = 73.38 }, 365.00:00:00); ({ Fit = 48.56756115
        +                                           Obs = 36.93 }, 366.00:00:00);
        +       ({ Fit = 48.56756115
        +          Obs = 4.64 }, 365.00:00:00); ({ Fit = 48.56756114
        +                                          Obs = 2.54 }, 365.00:00:00);
        +       ({ Fit = 48.56756114
        +          Obs = 1.8 }, 365.00:00:00); ({ Fit = 48.56756113
        +                                         Obs = 2.39 }, 366.00:00:00);
        +       ({ Fit = 48.56756113
        +          Obs = 4.23 }, 365.00:00:00); ({ Fit = 48.56756113
        +                                          Obs = 19.52 }, 365.00:00:00);
        +       ({ Fit = 48.56756113
        +          Obs = 82.11 }, 365.00:00:00); ({ Fit = 48.56756113
        +                                           Obs = 89.76 }, 366.00:00:00);
        +       ({ Fit = 48.56756113
        +          Obs = 81.66 }, 365.00:00:00); ({ Fit = 48.56756112
        +                                           Obs = 15.76 }, 365.00:00:00)|]));
        +        (ShortCode "lynx",
        +         FixedTimeSeries
        +  (({ Fit = 6.777390842
        +      Obs = 30.09 }, 1/1/1845 12:00:00 AM),
        +   TimeSteps
        +     [|({ Fit = 4.186350509
        +          Obs = 45.15 }, 365.00:00:00); ({ Fit = 3.417986048
        +                                           Obs = 49.15 }, 365.00:00:00);
        +       ({ Fit = 3.506861
        +          Obs = 39.52 }, 365.00:00:00); ({ Fit = 4.510855681
        +                                           Obs = 21.23 }, 366.00:00:00);
        +       ({ Fit = 7.255981932
        +          Obs = 8.42 }, 365.00:00:00); ({ Fit = 13.77009301
        +                                          Obs = 5.56 }, 365.00:00:00);
        +       ({ Fit = 22.94139975
        +          Obs = 5.08 }, 365.00:00:00); ({ Fit = 21.81606632
        +                                          Obs = 10.17 }, 366.00:00:00);
        +       ({ Fit = 22.69996507
        +          Obs = 19.6 }, 365.00:00:00); ({ Fit = 22.27096224
        +                                          Obs = 32.91 }, 365.00:00:00);
        +       ({ Fit = 22.65570078
        +          Obs = 34.38 }, 365.00:00:00); ({ Fit = 22.48901678
        +                                           Obs = 29.59 }, 366.00:00:00);
        +       ({ Fit = 22.66714995
        +          Obs = 21.3 }, 365.00:00:00); ({ Fit = 22.603698
        +                                          Obs = 13.69 }, 365.00:00:00);
        +       ({ Fit = 22.69011213
        +          Obs = 7.65 }, 365.00:00:00); ({ Fit = 22.66773814
        +                                          Obs = 4.08 }, 366.00:00:00);
        +       ({ Fit = 22.71136497
        +          Obs = 4.09 }, 365.00:00:00); ({ Fit = 22.70501686
        +                                          Obs = 14.33 }, 365.00:00:00);
        +       ({ Fit = 22.72786185
        +          Obs = 38.22 }, 365.00:00:00); ({ Fit = 22.72737247
        +                                           Obs = 60.78 }, 366.00:00:00);
        +       ({ Fit = 22.73975277
        +          Obs = 70.77 }, 365.00:00:00); ({ Fit = 22.74107167
        +                                           Obs = 72.77 }, 365.00:00:00);
        +       ({ Fit = 22.74799912
        +          Obs = 42.68 }, 365.00:00:00); ({ Fit = 22.74959988
        +                                           Obs = 16.39 }, 366.00:00:00);
        +       ({ Fit = 22.75359056
        +          Obs = 9.83 }, 365.00:00:00); ({ Fit = 22.75497058
        +                                          Obs = 5.8 }, 365.00:00:00);
        +       ({ Fit = 22.75732884
        +          Obs = 5.26 }, 365.00:00:00); ({ Fit = 22.75838137
        +                                          Obs = 18.91 }, 366.00:00:00);
        +       ({ Fit = 22.7598053
        +          Obs = 30.95 }, 365.00:00:00); ({ Fit = 22.76056076
        +                                           Obs = 31.18 }, 365.00:00:00);
        +       ({ Fit = 22.76143576
        +          Obs = 46.34 }, 365.00:00:00); ({ Fit = 22.76195949
        +                                           Obs = 45.77 }, 366.00:00:00);
        +       ({ Fit = 22.76250469
        +          Obs = 44.15 }, 365.00:00:00); ({ Fit = 22.76286007
        +                                           Obs = 36.33 }, 365.00:00:00);
        +       ({ Fit = 22.76320344
        +          Obs = 12.03 }, 365.00:00:00); ({ Fit = 22.76344125
        +                                           Obs = 12.6 }, 366.00:00:00);
        +       ({ Fit = 22.76365926
        +          Obs = 18.34 }, 365.00:00:00); ({ Fit = 22.76381693
        +                                           Obs = 35.14 }, 365.00:00:00);
        +       ({ Fit = 22.76395619
        +          Obs = 43.77 }, 365.00:00:00); ({ Fit = 22.76406006
        +                                           Obs = 65.69 }, 366.00:00:00);
        +       ({ Fit = 22.7641494
        +          Obs = 79.35 }, 365.00:00:00); ({ Fit = 22.76421753
        +                                           Obs = 51.65 }, 365.00:00:00);
        +       ({ Fit = 22.76427505
        +          Obs = 32.59 }, 365.00:00:00); ({ Fit = 22.7643196
        +                                           Obs = 22.45 }, 366.00:00:00);
        +       ({ Fit = 22.76435671
        +          Obs = 16.16 }, 365.00:00:00); ({ Fit = 22.76438577
        +                                           Obs = 14.12 }, 365.00:00:00);
        +       ({ Fit = 22.76440976
        +          Obs = 20.38 }, 365.00:00:00); ({ Fit = 22.7644287
        +                                           Obs = 33.33 }, 366.00:00:00);
        +       ({ Fit = 22.76444422
        +          Obs = 46.0 }, 365.00:00:00); ({ Fit = 22.76445654
        +                                          Obs = 51.41 }, 365.00:00:00);
        +       ({ Fit = 22.76446659
        +          Obs = 46.43 }, 365.00:00:00); ({ Fit = 22.76447461
        +                                           Obs = 33.68 }, 366.00:00:00);
        +       ({ Fit = 22.76448112
        +          Obs = 18.01 }, 365.00:00:00); ({ Fit = 22.76448633
        +                                           Obs = 8.86 }, 365.00:00:00);
        +       ({ Fit = 22.76449056
        +          Obs = 7.13 }, 365.00:00:00); ({ Fit = 22.76449394
        +                                          Obs = 9.47 }, 365.00:00:00);
        +       ({ Fit = 22.76449668
        +          Obs = 14.86 }, 365.00:00:00); ({ Fit = 22.76449888
        +                                           Obs = 31.47 }, 365.00:00:00);
        +       ({ Fit = 22.76450066
        +          Obs = 60.57 }, 365.00:00:00); ({ Fit = 22.76450209
        +                                           Obs = 63.51 }, 366.00:00:00);
        +       ({ Fit = 22.76450324
        +          Obs = 54.7 }, 365.00:00:00); ({ Fit = 22.76450417
        +                                          Obs = 6.3 }, 365.00:00:00);
        +       ({ Fit = 22.76450491
        +          Obs = 3.41 }, 365.00:00:00); ({ Fit = 22.76450552
        +                                          Obs = 5.44 }, 366.00:00:00);
        +       ({ Fit = 22.764506
        +          Obs = 11.65 }, 365.00:00:00); ({ Fit = 22.76450639
        +                                           Obs = 20.35 }, 365.00:00:00);
        +       ({ Fit = 22.76450671
        +          Obs = 32.88 }, 365.00:00:00); ({ Fit = 22.76450696
        +                                           Obs = 39.55 }, 366.00:00:00);
        +       ({ Fit = 22.76450717
        +          Obs = 43.36 }, 365.00:00:00); ({ Fit = 22.76450733
        +                                           Obs = 40.83 }, 365.00:00:00);
        +       ({ Fit = 22.76450746
        +          Obs = 30.36 }, 365.00:00:00); ({ Fit = 22.76450757
        +                                           Obs = 17.18 }, 366.00:00:00);
        +       ({ Fit = 22.76450766
        +          Obs = 6.82 }, 365.00:00:00); ({ Fit = 22.76450773
        +                                          Obs = 3.19 }, 365.00:00:00);
        +       ({ Fit = 22.76450778
        +          Obs = 3.52 }, 365.00:00:00); ({ Fit = 22.76450783
        +                                          Obs = 9.94 }, 366.00:00:00);
        +       ({ Fit = 22.76450786
        +          Obs = 20.3 }, 365.00:00:00); ({ Fit = 22.76450789
        +                                          Obs = 31.99 }, 365.00:00:00);
        +       ({ Fit = 22.76450792
        +          Obs = 42.36 }, 365.00:00:00); ({ Fit = 22.76450793
        +                                           Obs = 49.08 }, 366.00:00:00);
        +       ({ Fit = 22.76450795
        +          Obs = 53.99 }, 365.00:00:00); ({ Fit = 22.76450796
        +                                           Obs = 52.25 }, 365.00:00:00);
        +       ({ Fit = 22.76450797
        +          Obs = 37.7 }, 365.00:00:00); ({ Fit = 22.76450798
        +                                          Obs = 19.14 }, 366.00:00:00);
        +       ({ Fit = 22.76450799
        +          Obs = 6.98 }, 365.00:00:00); ({ Fit = 22.76450799
        +                                          Obs = 8.31 }, 365.00:00:00);
        +       ({ Fit = 22.764508
        +          Obs = 16.01 }, 365.00:00:00); ({ Fit = 22.764508
        +                                           Obs = 24.82 }, 366.00:00:00);
        +       ({ Fit = 22.764508
        +          Obs = 29.7 }, 365.00:00:00); ({ Fit = 22.764508
        +                                          Obs = 35.4 }, 365.00:00:00)|]))]
        +    Trace =
        +     [(161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]);
        +      (161725.5183,
        +       [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;
        +         -0.7329319289; 0.0402635584; 0.1679047933|]); ...]
        +    InternalDynamics =
        +     Some
        +       (map
        +          [(ShortCode "hare",
        +            [|48.97948066; 55.28946519; 59.64672094; 63.11542067; 65.48611048;
        +              65.38963298; 59.36101124; 47.80253297; 49.43514849; 48.31813548;
        +              48.96762773; 48.49743848; 48.7669053; 48.55866582; 48.6726493;
        +              48.57712909; 48.62548059; 48.5804187; 48.60065825; 48.57885336;
        +              48.58703836; 48.57621704; 48.57929735; 48.5737826; 48.57476603;
        +              48.57187543; 48.57204853; 48.57048838; 48.57038684; 48.56951967;
        +              48.56935516; 48.56885941; 48.5687071; 48.56841632; 48.56829641;
        +              48.568122; 48.56803443; 48.56792786; 48.56786651; 48.56780041;
        +              48.5677585; 48.56771702; 48.56768885; 48.56766258; 48.56764385;
        +              48.5676271; 48.56761473; 48.567604; 48.56759588; 48.56758898;
        +              48.56758367; 48.56757922; 48.56757575; 48.56757287; 48.56757061;
        +              48.56756875; 48.56756728; 48.56756607; 48.56756512; 48.56756434;
        +              48.56756371; 48.56756321; 48.5675628; 48.56756248; 48.56756221;
        +              48.567562; 48.56756183; 48.56756169; 48.56756158; 48.56756149;
        +              48.56756142; 48.56756136; 48.56756131; 48.56756128; 48.56756125;
        +              48.56756122; 48.5675612; 48.56756119; 48.56756117; 48.56756116;
        +              48.56756115; 48.56756115; 48.56756114; 48.56756114; 48.56756113;
        +              48.56756113; 48.56756113; 48.56756113; 48.56756113; 48.56756113;
        +              48.56756112|]);
        +           (ShortCode "lynx",
        +            [|6.777390842; 4.186350509; 3.417986048; 3.506861; 4.510855681;
        +              7.255981932; 13.77009301; 22.94139975; 21.81606632; 22.69996507;
        +              22.27096224; 22.65570078; 22.48901678; 22.66714995; 22.603698;
        +              22.69011213; 22.66773814; 22.71136497; 22.70501686; 22.72786185;
        +              22.72737247; 22.73975277; 22.74107167; 22.74799912; 22.74959988;
        +              22.75359056; 22.75497058; 22.75732884; 22.75838137; 22.7598053;
        +              22.76056076; 22.76143576; 22.76195949; 22.76250469; 22.76286007;
        +              22.76320344; 22.76344125; 22.76365926; 22.76381693; 22.76395619;
        +              22.76406006; 22.7641494; 22.76421753; 22.76427505; 22.7643196;
        +              22.76435671; 22.76438577; 22.76440976; 22.7644287; 22.76444422;
        +              22.76445654; 22.76446659; 22.76447461; 22.76448112; 22.76448633;
        +              22.76449056; 22.76449394; 22.76449668; 22.76449888; 22.76450066;
        +              22.76450209; 22.76450324; 22.76450417; 22.76450491; 22.76450552;
        +              22.764506; 22.76450639; 22.76450671; 22.76450696; 22.76450717;
        +              22.76450733; 22.76450746; 22.76450757; 22.76450766; 22.76450773;
        +              22.76450778; 22.76450783; 22.76450786; 22.76450789; 22.76450792;
        +              22.76450793; 22.76450795; 22.76450796; 22.76450797; 22.76450798;
        +              22.76450799; 22.76450799; 22.764508; 22.764508; 22.764508;
        +              22.764508|])]) }
        +

        Inspecting the model fit

        +

        The Bristlecone.fit function returns an EstimationResult, which contains some +key information that may be used to inspect the model fit:

        +
          +
        • Likelihood. The minimum likelihood identified during optimisation.
        • +
        • Parameters. The parameter set (θ) identified at the minimum likelihood.
        • +
        • Series. A TimeSeries for each variable in the model, which at each time point contains paired Modelled-Observed values.
        • +
        • Trace. The likelihood and θ that occurred at each step in optimisation, with the latest first.
        • +
        • Internal Dynamics. Not relevant for this simple model.
        • +
        +

        First, we can use the Series to inspect by eye the model fit versus the observed time-series:

        +
        +

        NB: this documentation is auto-generated so we cannot comment directly on the randomly generated scenario.

        +

        Next, we can examine the traces to see how parameter values evolved over the course of +the optimisation routine:

        +
        Graphing.parameterTrace result
        +
        +
        + +
        Multiple items
        module Bristlecone + +from Bristlecone

        --------------------
        namespace Bristlecone
        +
        module Language + +from Bristlecone
        <summary> + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +</summary>
        +
        Multiple items
        union case ModelExpression.Parameter: string -> ModelExpression

        --------------------
        module Parameter + +from Bristlecone
        +
        union case ModelExpression.This: ModelExpression
        +
        union case ModelExpression.Environment: string -> ModelExpression
        +
        module Model + +from Bristlecone.Language
        <summary> + Terms for scaffolding a model system for use with Bristlecone. +</summary>
        +
        val empty: ModelBuilder.ModelBuilder
        +
        val addEquation: name: string -> eq: ModelExpression -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
        +
        val estimateParameter: name: string -> constraintMode: Parameter.Constraint -> lower: float -> upper: float -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
        +
        val noConstraints: Parameter.Constraint
        +
        val useLikelihoodFunction: likelihoodFn: ModelSystem.LikelihoodFn -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
        +
        namespace Bristlecone.ModelLibrary
        +
        module Likelihood + +from Bristlecone.ModelLibrary
        <summary>Likelihood functions to represent a variety of distributions and data types.</summary>
        <namespacedoc><summary>Pre-built model parts for use in Bristlecone</summary></namespacedoc>
        +
        val sumOfSquares: keys: string list -> ModelSystem.ParameterValueAccessor -> data: CodedMap<ModelSystem.PredictedSeries> -> float
        <summary> + Residual sum of squares. Provides a simple metric of distance between + observed data and model predictions. +</summary>
        +
        val notNegative: Parameter.Constraint
        +
        val compile: (ModelBuilder.ModelBuilder -> ModelSystem.ModelSystem)
        +
        val engine: EstimationEngine.EstimationEngine<float,float>
        +
        val mkContinuous: EstimationEngine.EstimationEngine<float,float>
        <summary> + A standard `EstimationEngine` for ordinary differential equation models. +</summary>
        +
        val withTunedMCMC: tuning: Optimisation.MonteCarlo.TuneStep<float> seq -> engine: EstimationEngine.EstimationEngine<float,'a> -> EstimationEngine.EstimationEngine<float,'a>
        +
        val withContinuousTime: t: EstimationEngine.Integrate<'a,'b> -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
        <summary> + Use a custom integration method +</summary>
        +
        namespace Bristlecone.Integration
        +
        module MathNet + +from Bristlecone.Integration
        +
        val integrate: log: (Logging.LogEvent -> unit) -> tInitial: float -> tEnd: float -> tStep: float -> initialConditions: Map<'a,float> -> externalEnvironment: Map<'a,Time.TimeIndex.TimeIndex<float>> -> modelMap: Map<'a,(float -> float -> Map<'a,float> -> float)> -> Map<'a,float array> (requires comparison)
        +
        val withConditioning: c: Conditioning.Conditioning<'a> -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
        <summary> + Choose how the start point is chosen when solving the model system +</summary>
        +
        module Conditioning + +from Bristlecone
        +
        union case Conditioning.Conditioning.RepeatFirstDataPoint: Conditioning.Conditioning<'a>
        +
        val withSeed: seed: int -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
        <summary> + Use a mersenne twister random number generator + with a specific seed. +</summary>
        +
        val testSettings: Test.TestSettings<float>
        +
        Multiple items
        module Test + +from Bristlecone.Language
        <summary> + Terms for designing tests for model systems. +</summary>

        --------------------
        module Test + +from Bristlecone
        +
        val create: Test.TestSettings<float>
        +
        val addStartValues: values: (string * 'a) seq -> settings: Test.TestSettings<'a> -> Test.TestSettings<'a>
        <summary> + Adds start values to the test settings. Overwrites any existing + start values that may already exist. +</summary>
        +
        val addNoise: noiseFn: (System.Random -> Parameter.Pool -> CodedMap<Time.TimeSeries<'a>> -> Result<CodedMap<Time.TimeSeries<'a>>,string>) -> settings: Test.TestSettings<'a> -> Test.TestSettings<'a>
        <summary> + Add noise to a particular time-series when generating fake time-series. + Built-in noise functions are in the `Noise` module. +</summary>
        +
        module Noise + +from Bristlecone.Test
        <summary> + Functions for adding background variability into + test problems. +</summary>
        +
        val tryAddNormal: sdParamCode: string -> seriesName: string -> rnd: System.Random -> pool: Parameter.Pool.ParameterPool -> data: CodedMap<Time.TimeSeries.TimeSeries<float>> -> Result<Map<ShortCode.ShortCode,Time.TimeSeries.TimeSeries<float>>,string>
        <summary> + Adds normally-distributed noise around each data point in the selected + time-series. + Returns `None` if the series or parameter does not exist. +</summary>
        +
        val addGenerationRules: rules: Test.GenerationRule list -> settings: Test.TestSettings<'a> -> Test.TestSettings<'a>
        +
        module GenerationRules + +from Bristlecone.Test
        +
        val alwaysLessThan: i: float -> variable: string -> Test.GenerationRule
        <summary> + Ensures that all generated values are less than i +</summary>
        +
        val withTimeSeriesLength: n: int -> settings: Test.TestSettings<'a> -> Test.TestSettings<'a>
        +
        val endWhen: goal: EstimationEngine.EndCondition<'a> -> settings: Test.TestSettings<'a> -> Test.TestSettings<'a>
        +
        namespace Bristlecone.Optimisation
        +
        module EndConditions + +from Bristlecone.Optimisation
        +
        val afterIteration: iteration: int -> EstimationEngine.Solution<float> list -> currentIteration: int -> bool
        <summary> + End the optimisation procedure when a minimum number of iterations is exceeded. +</summary>
        +
        val testResult: Result<Test.TestResult,string>
        +
        val testModel: engine: EstimationEngine.EstimationEngine<float,float> -> settings: Test.TestSettings<float> -> model: ModelSystem.ModelSystem -> Result<Test.TestResult,string>
        <summary> + **Description** + Test that the specified estimation engine can correctly estimate known parameters. Random parameter sets are generated from the given model system. + **Parameters** + * `model` - a `ModelSystem` of equations and parameters + * `testSettings` - settings + * `engine` - an `EstimationEngine` +</summary>
        +
        namespace Plotly
        +
        namespace Plotly.NET
        +
        val pairedFits: series: Map<string,ModelSystem.FitSeries> -> string
        +
        val series: Map<string,ModelSystem.FitSeries>
        +
        Multiple items
        module Map + +from Bristlecone

        --------------------
        module Map + +from Microsoft.FSharp.Collections

        --------------------
        type Map<'Key,'Value (requires comparison)> = + interface IReadOnlyDictionary<'Key,'Value> + interface IReadOnlyCollection<KeyValuePair<'Key,'Value>> + interface IEnumerable + interface IStructuralEquatable + interface IComparable + interface IEnumerable<KeyValuePair<'Key,'Value>> + interface ICollection<KeyValuePair<'Key,'Value>> + interface IDictionary<'Key,'Value> + new: elements: ('Key * 'Value) seq -> Map<'Key,'Value> + member Add: key: 'Key * value: 'Value -> Map<'Key,'Value> + ...

        --------------------
        new: elements: ('Key * 'Value) seq -> Map<'Key,'Value>
        +
        Multiple items
        val string: value: 'T -> string

        --------------------
        type string = System.String
        +
        module ModelSystem + +from Bristlecone
        <summary> + Represents an ordinary differential equation model system and + its likelihood as as objective function that may be optimised. +</summary>
        +
        type FitSeries = Time.TimeSeries<ModelSystem.FitValue>
        +
        union case Result.Ok: ResultValue: 'T -> Result<'T,'TError>
        +
        val r: Test.TestResult
        +
        Multiple items
        module Seq + +from Bristlecone

        --------------------
        module Seq + +from Microsoft.FSharp.Collections
        +
        val map: mapping: ('T -> 'U) -> source: 'T seq -> 'U seq
        +
        val kv: System.Collections.Generic.KeyValuePair<string,ModelSystem.FitSeries>
        +
        val lines: (System.DateTime * float) seq list
        +
        property System.Collections.Generic.KeyValuePair.Value: ModelSystem.FitSeries with get
        <summary>Gets the value in the key/value pair.</summary>
        <returns>A <typeparamref name="TValue" /> that is the value of the <see cref="T:System.Collections.Generic.KeyValuePair`2" />.</returns>
        +
        module Time + +from Bristlecone
        +
        Multiple items
        module TimeSeries + +from Bristlecone.Time

        --------------------
        type TimeSeries<'T> = Time.TimeSeries.TimeSeries<'T>
        +
        val toObservations: series: Time.TimeSeries.TimeSeries<'a> -> Time.TimeSeries.Observation<'a> seq
        <summary> + Turn a time series into a sequence of observations +</summary>
        +
        val collect: mapping: ('T -> #('U seq)) -> source: 'T seq -> 'U seq
        +
        val d: ModelSystem.FitValue
        +
        val v: System.DateTime
        +
        ModelSystem.FitValue.Fit: float
        +
        ModelSystem.FitValue.Obs: float
        +
        val groupBy: projection: ('T -> 'Key) -> source: 'T seq -> ('Key * 'T seq) seq (requires equality)
        +
        val x: string
        +
        val s: (System.DateTime * string * float) seq
        +
        val x: System.DateTime
        +
        val y: float
        +
        val toList: source: 'T seq -> 'T list
        +
        type Chart = + static member AnnotatedHeatmap: zData: #('a1 seq) seq * annotationText: #(string seq) seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?X: 'a3 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiX: 'a3 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?XGap: int * [<Optional; DefaultParameterValue ((null :> obj))>] ?Y: 'a4 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiY: 'a4 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?YGap: int * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a5 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a5 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?ColorBar: ColorBar * [<Optional; DefaultParameterValue ((null :> obj))>] ?ColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowScale: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?ReverseScale: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?ZSmooth: SmoothAlg * [<Optional; DefaultParameterValue ((null :> obj))>] ?Transpose: bool * [<Optional; DefaultParameterValue ((false :> obj))>] ?UseWebGL: bool * [<Optional; DefaultParameterValue ((false :> obj))>] ?ReverseYAxis: bool * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a1 :> IConvertible and 'a3 :> IConvertible and 'a4 :> IConvertible and 'a5 :> IConvertible) + 1 overload + static member Area: x: #IConvertible seq * y: #IConvertible seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowMarkers: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiOpacity: float seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a2 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?TextPosition: TextPosition * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiTextPosition: TextPosition seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerOutline: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerSymbol: MarkerSymbol * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiMarkerSymbol: MarkerSymbol seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Marker: Marker * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineWidth: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineDash: DrawingStyle * [<Optional; DefaultParameterValue ((null :> obj))>] ?Line: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?AlignmentGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?OffsetGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?StackGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?Orientation: Orientation * [<Optional; DefaultParameterValue ((null :> obj))>] ?GroupNorm: GroupNorm * [<Optional; DefaultParameterValue ((null :> obj))>] ?FillColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?FillPatternShape: PatternShape * [<Optional; DefaultParameterValue ((null :> obj))>] ?FillPattern: Pattern * [<Optional; DefaultParameterValue ((false :> obj))>] ?UseWebGL: bool * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a2 :> IConvertible) + 1 overload + static member Bar: values: #IConvertible seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Keys: 'a1 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiKeys: 'a1 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiOpacity: float seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a2 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerOutline: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerPatternShape: PatternShape * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiMarkerPatternShape: PatternShape seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerPattern: Pattern * [<Optional; DefaultParameterValue ((null :> obj))>] ?Marker: Marker * [<Optional; DefaultParameterValue ((null :> obj))>] ?Base: #IConvertible * [<Optional; DefaultParameterValue ((null :> obj))>] ?Width: 'a4 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiWidth: 'a4 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?TextPosition: TextPosition * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiTextPosition: TextPosition seq * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a1 :> IConvertible and 'a2 :> IConvertible and 'a4 :> IConvertible) + 1 overload + static member BoxPlot: [<Optional; DefaultParameterValue ((null :> obj))>] ?X: 'a0 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiX: 'a0 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Y: 'a1 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiY: 'a1 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a2 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?FillColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?Marker: Marker * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?WhiskerWidth: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?BoxPoints: BoxPoints * [<Optional; DefaultParameterValue ((null :> obj))>] ?BoxMean: BoxMean * [<Optional; DefaultParameterValue ((null :> obj))>] ?Jitter: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?PointPos: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?Orientation: Orientation * [<Optional; DefaultParameterValue ((null :> obj))>] ?OutlineColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?OutlineWidth: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?Outline: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?AlignmentGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?OffsetGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?Notched: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?NotchWidth: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?QuartileMethod: QuartileMethod * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a0 :> IConvertible and 'a1 :> IConvertible and 'a2 :> IConvertible) + 2 overloads + static member Bubble: x: #IConvertible seq * y: #IConvertible seq * sizes: int seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiOpacity: float seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a2 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?TextPosition: TextPosition * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiTextPosition: TextPosition seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerOutline: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerSymbol: MarkerSymbol * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiMarkerSymbol: MarkerSymbol seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Marker: Marker * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineWidth: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?LineDash: DrawingStyle * [<Optional; DefaultParameterValue ((null :> obj))>] ?Line: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?AlignmentGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?OffsetGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?StackGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?Orientation: Orientation * [<Optional; DefaultParameterValue ((null :> obj))>] ?GroupNorm: GroupNorm * [<Optional; DefaultParameterValue ((false :> obj))>] ?UseWebGL: bool * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a2 :> IConvertible) + 1 overload + static member Candlestick: ``open`` : #IConvertible seq * high: #IConvertible seq * low: #IConvertible seq * close: #IConvertible seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?X: 'a4 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiX: 'a4 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a5 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a5 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Line: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?IncreasingColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?Increasing: FinanceMarker * [<Optional; DefaultParameterValue ((null :> obj))>] ?DecreasingColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?Decreasing: FinanceMarker * [<Optional; DefaultParameterValue ((null :> obj))>] ?WhiskerWidth: float * [<Optional; DefaultParameterValue ((true :> obj))>] ?ShowXAxisRangeSlider: bool * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a4 :> IConvertible and 'a5 :> IConvertible) + 2 overloads + static member Column: values: #IConvertible seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Keys: 'a1 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiKeys: 'a1 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiOpacity: float seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a2 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerOutline: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerPatternShape: PatternShape * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiMarkerPatternShape: PatternShape seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerPattern: Pattern * [<Optional; DefaultParameterValue ((null :> obj))>] ?Marker: Marker * [<Optional; DefaultParameterValue ((null :> obj))>] ?Base: #IConvertible * [<Optional; DefaultParameterValue ((null :> obj))>] ?Width: 'a4 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiWidth: 'a4 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?TextPosition: TextPosition * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiTextPosition: TextPosition seq * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a1 :> IConvertible and 'a2 :> IConvertible and 'a4 :> IConvertible) + 1 overload + static member Contour: zData: #('a1 seq) seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?X: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiX: 'a2 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Y: 'a3 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiY: 'a3 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a4 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a4 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?ColorBar: ColorBar * [<Optional; DefaultParameterValue ((null :> obj))>] ?ColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowScale: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?ReverseScale: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Transpose: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContourLineColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContourLineDash: DrawingStyle * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContourLineSmoothing: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContourLine: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContoursColoring: ContourColoring * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContoursOperation: ConstraintOperation * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContoursType: ContourType * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowContourLabels: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?ContourLabelFont: Font * [<Optional; DefaultParameterValue ((null :> obj))>] ?Contours: Contours * [<Optional; DefaultParameterValue ((null :> obj))>] ?FillColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?NContours: int * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a1 :> IConvertible and 'a2 :> IConvertible and 'a3 :> IConvertible and 'a4 :> IConvertible) + static member Funnel: x: #IConvertible seq * y: #IConvertible seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?Width: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?Offset: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a2 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?TextPosition: TextPosition * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiTextPosition: TextPosition seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Orientation: Orientation * [<Optional; DefaultParameterValue ((null :> obj))>] ?AlignmentGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?OffsetGroup: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?MarkerOutline: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?Marker: Marker * [<Optional; DefaultParameterValue ((null :> obj))>] ?TextInfo: TextInfo * [<Optional; DefaultParameterValue ((null :> obj))>] ?ConnectorLineColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?ConnectorLineStyle: DrawingStyle * [<Optional; DefaultParameterValue ((null :> obj))>] ?ConnectorFillColor: Color * [<Optional; DefaultParameterValue ((null :> obj))>] ?ConnectorLine: Line * [<Optional; DefaultParameterValue ((null :> obj))>] ?Connector: FunnelConnector * [<Optional; DefaultParameterValue ((null :> obj))>] ?InsideTextFont: Font * [<Optional; DefaultParameterValue ((null :> obj))>] ?OutsideTextFont: Font * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a2 :> IConvertible) + static member Heatmap: zData: #('a1 seq) seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?X: 'a2 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiX: 'a2 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Y: 'a3 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiY: 'a3 seq seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?Name: string * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<Optional; DefaultParameterValue ((null :> obj))>] ?XGap: int * [<Optional; DefaultParameterValue ((null :> obj))>] ?YGap: int * [<Optional; DefaultParameterValue ((null :> obj))>] ?Text: 'a4 * [<Optional; DefaultParameterValue ((null :> obj))>] ?MultiText: 'a4 seq * [<Optional; DefaultParameterValue ((null :> obj))>] ?ColorBar: ColorBar * [<Optional; DefaultParameterValue ((null :> obj))>] ?ColorScale: Colorscale * [<Optional; DefaultParameterValue ((null :> obj))>] ?ShowScale: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?ReverseScale: bool * [<Optional; DefaultParameterValue ((null :> obj))>] ?ZSmooth: SmoothAlg * [<Optional; DefaultParameterValue ((null :> obj))>] ?Transpose: bool * [<Optional; DefaultParameterValue ((false :> obj))>] ?UseWebGL: bool * [<Optional; DefaultParameterValue ((false :> obj))>] ?ReverseYAxis: bool * [<Optional; DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart (requires 'a1 :> IConvertible and 'a2 :> IConvertible and 'a3 :> IConvertible and 'a4 :> IConvertible) + 1 overload + ...
        +
        static member Chart.combine: gCharts: GenericChart.GenericChart seq -> GenericChart.GenericChart
        +
        static member Chart.Line: xy: (#System.IConvertible * #System.IConvertible) seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?ShowMarkers: bool * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Name: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiOpacity: float seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Text: 'c * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiText: 'c seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?TextPosition: StyleParam.TextPosition * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiTextPosition: StyleParam.TextPosition seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerColorScale: StyleParam.Colorscale * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerOutline: Line * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerSymbol: StyleParam.MarkerSymbol * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiMarkerSymbol: StyleParam.MarkerSymbol seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Marker: TraceObjects.Marker * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineColor: Color * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineColorScale: StyleParam.Colorscale * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineWidth: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineDash: StyleParam.DrawingStyle * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Line: Line * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?AlignmentGroup: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?OffsetGroup: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?StackGroup: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Orientation: StyleParam.Orientation * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?GroupNorm: StyleParam.GroupNorm * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Fill: StyleParam.Fill * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?FillColor: Color * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?FillPattern: TraceObjects.Pattern * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((false :> obj))>] ?UseWebGL: bool * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart.GenericChart (requires 'c :> System.IConvertible)
        static member Chart.Line: x: #System.IConvertible seq * y: #System.IConvertible seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?ShowMarkers: bool * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Name: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?ShowLegend: bool * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Opacity: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiOpacity: float seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Text: 'd * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiText: 'd seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?TextPosition: StyleParam.TextPosition * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiTextPosition: StyleParam.TextPosition seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerColor: Color * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerColorScale: StyleParam.Colorscale * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerOutline: Line * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MarkerSymbol: StyleParam.MarkerSymbol * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?MultiMarkerSymbol: StyleParam.MarkerSymbol seq * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Marker: TraceObjects.Marker * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineColor: Color * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineColorScale: StyleParam.Colorscale * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineWidth: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?LineDash: StyleParam.DrawingStyle * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Line: Line * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?AlignmentGroup: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?OffsetGroup: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?StackGroup: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Orientation: StyleParam.Orientation * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?GroupNorm: StyleParam.GroupNorm * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Fill: StyleParam.Fill * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?FillColor: Color * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?FillPattern: TraceObjects.Pattern * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((false :> obj))>] ?UseWebGL: bool * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((true :> obj))>] ?UseDefaults: bool -> GenericChart.GenericChart (requires 'd :> System.IConvertible)
        +
        static member Chart.withTitle: title: Title -> (GenericChart.GenericChart -> GenericChart.GenericChart)
        static member Chart.withTitle: title: string * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?TitleFont: Font -> (GenericChart.GenericChart -> GenericChart.GenericChart)
        +
        property System.Collections.Generic.KeyValuePair.Key: string with get
        <summary>Gets the key in the key/value pair.</summary>
        <returns>A <typeparamref name="TKey" /> that is the key of the <see cref="T:System.Collections.Generic.KeyValuePair`2" />.</returns>
        +
        static member Chart.Grid: [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?SubPlots: (StyleParam.LinearAxisId * StyleParam.LinearAxisId) array array * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?XAxes: StyleParam.LinearAxisId array * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?YAxes: StyleParam.LinearAxisId array * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?RowOrder: StyleParam.LayoutGridRowOrder * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Pattern: StyleParam.LayoutGridPattern * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?XGap: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?YGap: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Domain: LayoutObjects.Domain * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?XSide: StyleParam.LayoutGridXSide * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?YSide: StyleParam.LayoutGridYSide -> (#('a1 seq) -> GenericChart.GenericChart) (requires 'a1 :> GenericChart.GenericChart seq)
        static member Chart.Grid: nRows: int * nCols: int * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?SubPlots: (StyleParam.LinearAxisId * StyleParam.LinearAxisId) array array * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?XAxes: StyleParam.LinearAxisId array * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?YAxes: StyleParam.LinearAxisId array * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?RowOrder: StyleParam.LayoutGridRowOrder * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Pattern: StyleParam.LayoutGridPattern * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?XGap: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?YGap: float * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?Domain: LayoutObjects.Domain * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?XSide: StyleParam.LayoutGridXSide * [<System.Runtime.InteropServices.Optional; System.Runtime.InteropServices.DefaultParameterValue ((null :> obj))>] ?YSide: StyleParam.LayoutGridYSide -> (#(GenericChart.GenericChart seq) -> GenericChart.GenericChart)
        +
        val x: GenericChart.GenericChart
        +
        val printfn: format: Printf.TextWriterFormat<'T> -> 'T
        +
        module GenericChart + +from Plotly.NET
        <summary> + Module to represent a GenericChart +</summary>
        +
        val toChartHTML: gChart: GenericChart.GenericChart -> string
        +
        union case Result.Error: ErrorValue: 'TError -> Result<'T,'TError>
        +
        val e: string
        +
        val sprintf: format: Printf.StringFormat<'T> -> 'T
        +
        val pairedFitsForTestResult: testResult: Result<Test.TestResult,string> -> string
        +
        Multiple items
        module Result + +from Bristlecone

        --------------------
        module Result + +from Microsoft.FSharp.Core

        --------------------
        [<Struct>] +type Result<'T,'TError> = + | Ok of ResultValue: 'T + | Error of ErrorValue: 'TError
        +
        module Test + +from Bristlecone
        +
        type TestResult = + { + Parameters: ParameterTestResult list + Series: Map<string,FitSeries> + ErrorStructure: Map<string,float seq> + RealLikelihood: float + EstimatedLikelihood: float + }
        +
        Test.TestResult.Series: Map<string,ModelSystem.FitSeries>
        +
        val pairedFitsForResult: testResult: Result<ModelSystem.EstimationResult,string> -> string
        +
        val testResult: Result<ModelSystem.EstimationResult,string>
        +
        type EstimationResult = + { + ResultId: Guid + Likelihood: float + Parameters: Pool + Series: CodedMap<FitSeries> + Trace: (float * float array) list + InternalDynamics: CodedMap<float array> option + }
        <summary> + An estimated model fit for a time-series model. +</summary>
        +
        val r: ModelSystem.EstimationResult
        +
        ModelSystem.EstimationResult.Series: CodedMap<ModelSystem.FitSeries>
        +
        val kv: System.Collections.Generic.KeyValuePair<ShortCode.ShortCode,ModelSystem.FitSeries>
        +
        property System.Collections.Generic.KeyValuePair.Key: ShortCode.ShortCode with get
        <summary>Gets the key in the key/value pair.</summary>
        <returns>A <typeparamref name="TKey" /> that is the key of the <see cref="T:System.Collections.Generic.KeyValuePair`2" />.</returns>
        +
        property ShortCode.ShortCode.Value: string with get
        +
        val ofSeq: elements: ('Key * 'T) seq -> Map<'Key,'T> (requires comparison)
        +
        val parameterTrace: result: Result<ModelSystem.EstimationResult,'b> -> string
        +
        val result: Result<ModelSystem.EstimationResult,'b>
        +
        'b
        +
        ModelSystem.EstimationResult.Trace: (float * float array) list
        +
        val snd: tuple: ('T1 * 'T2) -> 'T2
        +
        Multiple items
        module List + +from Bristlecone

        --------------------
        module List + +from Microsoft.FSharp.Collections

        --------------------
        type List<'T> = + | op_Nil + | op_ColonColon of Head: 'T * Tail: 'T list + interface IReadOnlyList<'T> + interface IReadOnlyCollection<'T> + interface IEnumerable + interface IEnumerable<'T> + member GetReverseIndex: rank: int * offset: int -> int + member GetSlice: startIndex: int option * endIndex: int option -> 'T list + static member Cons: head: 'T * tail: 'T list -> 'T list + member Head: 'T + member IsEmpty: bool + member Item: index: int -> 'T with get + ...
        +
        val flip: matrix: 'a list list -> 'a list list
        +
        val map: mapping: ('T -> 'U) -> list: 'T list -> 'U list
        +
        val values: float list
        +
        argument y: float seq
        <summary> Creates a Line chart, which uses a Line plotted between the given datums in a 2D space to visualize typically an evolution of Y depending on X.</summary>
        <param name="x">Sets the x coordinates of the plotted data.</param>
        <param name="y">Sets the y coordinates of the plotted data.</param>
        <param name="ShowMarkers">Whether to show markers for the individual data points</param>
        <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
        <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
        <param name="Opacity">Sets the opactity of the trace</param>
        <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
        <param name="Text">Sets a text associated with each datum</param>
        <param name="MultiText">Sets individual text for each datum</param>
        <param name="TextPosition">Sets the position of text associated with each datum</param>
        <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
        <param name="MarkerColor">Sets the color of the marker</param>
        <param name="MarkerColorScale">Sets the colorscale of the marker</param>
        <param name="MarkerOutline">Sets the outline of the marker</param>
        <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
        <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
        <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
        <param name="LineColor">Sets the color of the line</param>
        <param name="LineColorScale">Sets the colorscale of the line</param>
        <param name="LineWidth">Sets the width of the line</param>
        <param name="LineDash">sets the drawing style of the line</param>
        <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
        <param name="AlignmentGroup">Set several traces linked to the same position axis or matching axes to the same alignmentgroup. This controls whether bars compute their positional range dependently or independently.</param>
        <param name="OffsetGroup">Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up.</param>
        <param name="StackGroup">Set several traces (on the same subplot) to the same stackgroup in order to add their y values (or their x values if `Orientation` is Horizontal). Stacking also turns `fill` on by default and sets the default `mode` to "lines" irrespective of point count. ou can only stack on a numeric (linear or log) axis. Traces in a `stackgroup` will only fill to (or be filled to) other traces in the same group. With multiple `stackgroup`s or some traces stacked and some not, if fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order</param>
        <param name="Orientation">Sets the stacking direction. Only relevant when `stackgroup` is used, and only the first `orientation` found in the `stackgroup` will be used.</param>
        <param name="GroupNorm">Sets the normalization for the sum of this `stackgroup. Only relevant when `stackgroup` is used, and only the first `groupnorm` found in the `stackgroup` will be used</param>
        <param name="Fill">Sets the area to fill with a solid color. Defaults to "none" unless this trace is stacked, then it gets "tonexty" ("tonextx") if `orientation` is "v" ("h") Use with `FillColor` if not "none". "tozerox" and "tozeroy" fill to x=0 and y=0 respectively. "tonextx" and "tonexty" fill between the endpoints of this trace and the endpoints of the trace before it, connecting those endpoints with straight lines (to make a stacked area graph); if there is no trace before it, they behave like "tozerox" and "tozeroy". "toself" connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape. "tonext" fills the space between two traces if one completely encloses the other (eg consecutive contour lines), and behaves like "toself" if there is no trace before it. "tonext" should not be used if one trace does not enclose the other. Traces in a `stackgroup` will only fill to (or be filled to) other traces in the same group. With multiple `stackgroup`s or some traces stacked and some not, if fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order.</param>
        <param name="FillColor">Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.</param>
        <param name="FillPattern">Sets the pattern within the marker.</param>
        <param name="UseWebGL">If true, plotly.js will use the WebGL engine to render this chart. use this when you want to render many objects at once.</param>
        <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
        +
        argument x: int seq
        <summary> Creates a Line chart, which uses a Line plotted between the given datums in a 2D space to visualize typically an evolution of Y depending on X.</summary>
        <param name="x">Sets the x coordinates of the plotted data.</param>
        <param name="y">Sets the y coordinates of the plotted data.</param>
        <param name="ShowMarkers">Whether to show markers for the individual data points</param>
        <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
        <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
        <param name="Opacity">Sets the opactity of the trace</param>
        <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
        <param name="Text">Sets a text associated with each datum</param>
        <param name="MultiText">Sets individual text for each datum</param>
        <param name="TextPosition">Sets the position of text associated with each datum</param>
        <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
        <param name="MarkerColor">Sets the color of the marker</param>
        <param name="MarkerColorScale">Sets the colorscale of the marker</param>
        <param name="MarkerOutline">Sets the outline of the marker</param>
        <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
        <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
        <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
        <param name="LineColor">Sets the color of the line</param>
        <param name="LineColorScale">Sets the colorscale of the line</param>
        <param name="LineWidth">Sets the width of the line</param>
        <param name="LineDash">sets the drawing style of the line</param>
        <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
        <param name="AlignmentGroup">Set several traces linked to the same position axis or matching axes to the same alignmentgroup. This controls whether bars compute their positional range dependently or independently.</param>
        <param name="OffsetGroup">Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up.</param>
        <param name="StackGroup">Set several traces (on the same subplot) to the same stackgroup in order to add their y values (or their x values if `Orientation` is Horizontal). Stacking also turns `fill` on by default and sets the default `mode` to "lines" irrespective of point count. ou can only stack on a numeric (linear or log) axis. Traces in a `stackgroup` will only fill to (or be filled to) other traces in the same group. With multiple `stackgroup`s or some traces stacked and some not, if fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order</param>
        <param name="Orientation">Sets the stacking direction. Only relevant when `stackgroup` is used, and only the first `orientation` found in the `stackgroup` will be used.</param>
        <param name="GroupNorm">Sets the normalization for the sum of this `stackgroup. Only relevant when `stackgroup` is used, and only the first `groupnorm` found in the `stackgroup` will be used</param>
        <param name="Fill">Sets the area to fill with a solid color. Defaults to "none" unless this trace is stacked, then it gets "tonexty" ("tonextx") if `orientation` is "v" ("h") Use with `FillColor` if not "none". "tozerox" and "tozeroy" fill to x=0 and y=0 respectively. "tonextx" and "tonexty" fill between the endpoints of this trace and the endpoints of the trace before it, connecting those endpoints with straight lines (to make a stacked area graph); if there is no trace before it, they behave like "tozerox" and "tozeroy". "toself" connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape. "tonext" fills the space between two traces if one completely encloses the other (eg consecutive contour lines), and behaves like "toself" if there is no trace before it. "tonext" should not be used if one trace does not enclose the other. Traces in a `stackgroup` will only fill to (or be filled to) other traces in the same group. With multiple `stackgroup`s or some traces stacked and some not, if fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order.</param>
        <param name="FillColor">Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.</param>
        <param name="FillPattern">Sets the pattern within the marker.</param>
        <param name="UseWebGL">If true, plotly.js will use the WebGL engine to render this chart. use this when you want to render many objects at once.</param>
        <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
        +
        property List.Length: int with get
        +
        module Graphing + +from Predator-prey
        +
        Multiple items
        type LiteralAttribute = + inherit Attribute + new: unit -> LiteralAttribute

        --------------------
        new: unit -> LiteralAttribute
        +
        [<Literal>] +val ResolutionFolder: string = "/Users/runner/work/bristlecone/bristlecone/docs/examples"
        +
        type PopulationData = FSharp.Data.CsvProvider<...>
        +
        Multiple items
        namespace FSharp

        --------------------
        namespace Microsoft.FSharp
        +
        Multiple items
        namespace FSharp.Data

        --------------------
        namespace Microsoft.FSharp.Data
        +
        type CsvProvider
        <summary>Typed representation of a CSV file.</summary> + <param name='Sample'>Location of a CSV sample file or a string containing a sample CSV document.</param> + <param name='Separators'>Column delimiter(s). Defaults to <c>,</c>.</param> + <param name='InferRows'>Number of rows to use for inference. Defaults to <c>1000</c>. If this is zero, all rows are used.</param> + <param name='Schema'>Optional column types, in a comma separated list. Valid types are <c>int</c>, <c>int64</c>, <c>bool</c>, <c>float</c>, <c>decimal</c>, <c>date</c>, <c>datetimeoffset</c>, <c>timespan</c>, <c>guid</c>, <c>string</c>, <c>int?</c>, <c>int64?</c>, <c>bool?</c>, <c>float?</c>, <c>decimal?</c>, <c>date?</c>, <c>datetimeoffset?</c>, <c>timespan?</c>, <c>guid?</c>, <c>int option</c>, <c>int64 option</c>, <c>bool option</c>, <c>float option</c>, <c>decimal option</c>, <c>date option</c>, <c>datetimeoffset option</c>, <c>timespan option</c>, <c>guid option</c> and <c>string option</c>. + You can also specify a unit and the name of the column like this: <c>Name (type&lt;unit&gt;)</c>, or you can override only the name. If you don't want to specify all the columns, you can reference the columns by name like this: <c>ColumnName=type</c>.</param> + <param name='HasHeaders'>Whether the sample contains the names of the columns as its first line.</param> + <param name='IgnoreErrors'>Whether to ignore rows that have the wrong number of columns or which can't be parsed using the inferred or specified schema. Otherwise an exception is thrown when these rows are encountered.</param> + <param name='SkipRows'>Skips the first n rows of the CSV file.</param> + <param name='AssumeMissingValues'>When set to true, the type provider will assume all columns can have missing values, even if in the provided sample all values are present. Defaults to false.</param> + <param name='PreferOptionals'>When set to true, inference will prefer to use the option type instead of nullable types, <c>double.NaN</c> or <c>""</c> for missing values. Defaults to false.</param> + <param name='Quote'>The quotation mark (for surrounding values containing the delimiter). Defaults to <c>"</c>.</param> + <param name='MissingValues'>The set of strings recognized as missing values specified as a comma-separated string (e.g., "NA,N/A"). Defaults to <c>NaN,NA,N/A,#N/A,:,-,TBA,TBD</c>.</param> + <param name='CacheRows'>Whether the rows should be caches so they can be iterated multiple times. Defaults to true. Disable for large datasets.</param> + <param name='Culture'>The culture used for parsing numbers and dates. Defaults to the invariant culture.</param> + <param name='Encoding'>The encoding used to read the sample. You can specify either the character set name or the codepage number. Defaults to UTF8 for files, and to ISO-8859-1 the for HTTP requests, unless <c>charset</c> is specified in the <c>Content-Type</c> response header.</param> + <param name='ResolutionFolder'>A directory that is used when resolving relative file references (at design time and in hosted execution).</param> + <param name='EmbeddedResource'>When specified, the type provider first attempts to load the sample from the specified resource + (e.g. 'MyCompany.MyAssembly, resource_name.csv'). This is useful when exposing types generated by the type provider.</param>
        +
        val data: Map<ShortCode.ShortCode,Time.TimeSeries.TimeSeries<float>>
        +
        val csv: FSharp.Data.CsvProvider<...>
        +
        FSharp.Data.CsvProvider<...>.Load(uri: string) : FSharp.Data.CsvProvider<...>
        Loads CSV from the specified uri
        FSharp.Data.CsvProvider<...>.Load(reader: System.IO.TextReader) : FSharp.Data.CsvProvider<...>
        Loads CSV from the specified reader
        FSharp.Data.CsvProvider<...>.Load(stream: System.IO.Stream) : FSharp.Data.CsvProvider<...>
        Loads CSV from the specified stream
        +
        val code: (string -> ShortCode.ShortCode option)
        <summary> + A short code representation of an identifier for a parameter, + model equation, or other model component. +</summary>
        +
        Multiple items
        union case ModelExpression.Time: ModelExpression

        --------------------
        module Time + +from Bristlecone
        +
        val fromObservations: dataset: Time.TimeSeries.Observation<'a> seq -> Time.TimeSeries.TimeSeries<'a>
        <summary> + Arrange existing observations as a bristlecone `TimeSeries`. + Observations become ordered and indexed by time. +</summary>
        +
        property FSharp.Data.Runtime.CsvFile.Rows: FSharp.Data.CsvProvider<...>.Row seq with get
        <summary> + The rows with data +</summary>
        +
        val r: FSharp.Data.CsvProvider<...>.Row
        +
        Multiple items
        val float: value: 'T -> float (requires member op_Explicit)

        --------------------
        type float = System.Double

        --------------------
        type float<'Measure> = + float
        +
        property FSharp.Data.CsvProvider<...>.Row.Hare: decimal with get
        +
        property FSharp.Data.CsvProvider<...>.Row.Year: System.DateTime with get
        +
        property FSharp.Data.CsvProvider<...>.Row.Lynx: decimal with get
        +
        val ofList: elements: ('Key * 'T) list -> Map<'Key,'T> (requires comparison)
        +
        val endCondition: EstimationEngine.EndCondition<float>
        +
        val result: Result<ModelSystem.EstimationResult,string>
        +
        val fit: engine: EstimationEngine.EstimationEngine<float,float> -> endCondition: EstimationEngine.EndCondition<float> -> timeSeriesData: CodedMap<Time.TimeSeries<float>> -> model: ModelSystem.ModelSystem -> Result<ModelSystem.EstimationResult,string>
        <summary> + Fit a time-series model to data. + + Please note: it is strongly recommended that you test that the given `EstimationEngine` + can correctly identify known parameters for your model. Refer to the `Bristlecone.testModel` + function, which can be used to generate known data and complete this process. + </summary>
        <param name="engine">The engine encapsulates all settings that form part of the estimation + method. Importantly, this includes the random number generator used for all stages + of the analysis; if this is set using a fixed seed, the result will be reproducable.</param>
        <param name="endCondition">You must specify a stopping condition, after which + the optimisation process will cease. Bristlecone includes built-in end conditions + in the `Bristlecone.Optimisation.EndConditions` module.</param>
        <param name="timeSeriesData"></param>
        <param name="model"></param>
        <returns></returns>
        + +
        +
        + + + +
        +
          +

          Type something to start searching.

          +
          +
          + + + + + + + \ No newline at end of file diff --git a/examples/predator-prey.ipynb b/examples/predator-prey.ipynb new file mode 100644 index 0000000..0e9480a --- /dev/null +++ b/examples/predator-prey.ipynb @@ -0,0 +1,1181 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "[![Script](https://acm.im/bristlecone//img/badge-script.svg)](https://acm.im/bristlecone//examples/predator-prey.fsx)\u0026emsp;\n", + "[![Notebook](https://acm.im/bristlecone//img/badge-notebook.svg)](https://acm.im/bristlecone//examples/predator-prey.ipynb)\n", + "\n", + "## Predator-Prey Dynamics: Snowshoe Hare and Lynx\n", + "\n", + "Here we use the classic example of snowshoe hare and lynx predator-prey dynamics,\n", + "to demonstrate the basic functions of Bristlecone. The dataset is a 90-year\n", + "time-series of snowshoe hare and lynx pelts purchased by the\n", + "Hudson\u0027s Bay Company of Canada. Data is in 1000s.\n", + "\n", + "To get started, we first load and open the Bristlecone library in\n", + "an F# script file (.fsx):\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone // Opens Bristlecone core library and estimation engine\n", + "open Bristlecone.Language // Open the language for writing Bristlecone models\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Defining the ecological model\n", + "\n", + "In Bristlecone, a single ecological model (representing a single hypothesis)\n", + "is defined through the `ModelSystem` type. A `ModelSystem` needs to include three key\n", + "components:\n", + "\n", + "* **Model equations.** When working in continuous time, these are a system of Ordinary Differential Equations (ODEs).\n", + "\n", + "* **Parameters to be estimated.** You must specify the starting bounds and constraints for every parameter included in the model equations.\n", + "\n", + "* **Likelihood function**. The (negative log) likelihood function **-logL** represents the probability of observing the data given the parameter set. We use a negative log likelihood function, which is then minimised during optimisation.\n", + "\n", + "In this example, we demonstrate using the **Lotka–Volterra** predator–prey model as the\n", + "model system. For the -logL function we use a bivariate normal negative log likelihood function.\n", + "This -logL function assumes normally-distributed observation error around each observation\n", + "at each time-point, for both the lynx and hare data. The -logL function contains\n", + "three parameters that are to be estimated alongside the deterministic model: the variability\n", + "in lynx data, the variability in hare data, and their covariance.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "let ``predator-prey`` =\n", + "\n", + " let ``dh/dt`` = Parameter \"α\" * This - Parameter \"β\" * This * Environment \"lynx\"\n", + " let ``dl/dt`` = - Parameter \"γ\" * This + Parameter \"Δ\" * Environment \"hare\" * This\n", + "\n", + " Model.empty\n", + " |\u003e Model.addEquation \"hare\" ``dh/dt``\n", + " |\u003e Model.addEquation \"lynx\" ``dl/dt``\n", + "\n", + " |\u003e Model.estimateParameter \"α\" noConstraints 0.01 1.00 // Natural growth rate of hares in absence of predation\n", + " |\u003e Model.estimateParameter \"β\" noConstraints 0.01 1.00 // Death rate per encounter of hares due to predation\n", + " |\u003e Model.estimateParameter \"Δ\" noConstraints 0.01 0.20 // Efficiency of turning predated hares into lynx\n", + " |\u003e Model.estimateParameter \"γ\" noConstraints 0.01 0.20 // Natural death rate of lynx in the absence of food\n", + "\n", + " |\u003e Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [\"hare\"; \"lynx\"])\n", + " |\u003e Model.estimateParameter \"ρ\" noConstraints -0.500 0.500\n", + " |\u003e Model.estimateParameter \"σ[x]\" notNegative 0.001 0.100\n", + " |\u003e Model.estimateParameter \"σ[y]\" notNegative 0.001 0.100\n", + "\n", + " |\u003e Model.compile\n", + "\n", + " // TODO Error when setting constraints. Optim allows them to go negative!\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Setting up the **Bristlecone Engine**\n", + "\n", + "A bristlecone engine provides a fixed setup for estimating parameters from data.\n", + "Use the same engine for all model fits within a single study.\n", + "This engine uses a gradident descent method (Nelder Mead simplex), and a basic\n", + "Runge-Kutta 4 integration method provided by MathNet Numerics.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 4, "outputs": [], + "source": [ + "let engine = \n", + " Bristlecone.mkContinuous\n", + " |\u003e Bristlecone.withTunedMCMC []\n", + " |\u003e Bristlecone.withContinuousTime Integration.MathNet.integrate\n", + " |\u003e Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint\n", + " |\u003e Bristlecone.withSeed 1000 // We are setting a seed for this example - see below\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "**Note. We have set a seed for random number generation for this worked example. This ensures that the results are the same each time this documentation is generated.**\n", + "\n", + "### Does it all work? Testing the engine and model\n", + "\n", + "Before being confident in the ability of our estimation engine to\n", + "be able to arrive at the correct solution, we must run a full test\n", + "of the model and estimation engine.\n", + "\n", + "Bristlecone includes the `Bristlecone.testModel` function, which\n", + "we use here. Given a model system and estimation engine, the function\n", + "generates a random parameter set (**θ**) many times; for each **θ**, the\n", + "\u0027true\u0027 time-series are generated. The test result indicates the effectiveness\n", + "of the configuration at estimating **θ** given the auto-generated\n", + "time-series. If there is divergence, there is likely an\n", + "issue with your model or the Bristlecone configuration.\n", + "\n", + "Bristlecone includes many settings to configure the test\n", + "procedure. A simple test configuration is set as `Test.defaultSettings`,\n", + "but here we will configure some additional settings:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 5, "outputs": [], + "source": [ + "let testSettings =\n", + " Test.create\n", + " |\u003e Test.addStartValues [\n", + " \"hare\", 50.\n", + " \"lynx\", 75. ]\n", + " |\u003e Test.addNoise (Test.Noise.tryAddNormal \"σ[y]\" \"lynx\")\n", + " |\u003e Test.addNoise (Test.Noise.tryAddNormal \"σ[x]\" \"hare\")\n", + " |\u003e Test.addGenerationRules [\n", + " Test.GenerationRules.alwaysLessThan 10000. \"lynx\"\n", + " Test.GenerationRules.alwaysLessThan 10000. \"hare\" ]\n", + " |\u003e Test.withTimeSeriesLength 30\n", + " |\u003e Test.endWhen (Optimisation.EndConditions.afterIteration 1)\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "In our `TestSettings`, we have specified the initial time point (t = 0)\n", + "for both modelled time-series. We have also added noise around\n", + "each generated time-series, and specified that each time-series\n", + "should be 30 years in length.\n", + "\n", + "With these test settings, we can now run the test.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 6, "outputs": [ + { + "data": { + "text/plain": ["##1## GeneralEvent \"Attempting to generate parameter set.\"", +"##1## GeneralEvent \"The data must comply with 2 rules after 50000 tries.\"", +"##1## GeneralEvent", +" \"Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1).\"", +"##1## DebugEvent", +" \"Observations occur on a fixed temporal resolution: Years PositiveInt 1.\"", +"##1## DebugEvent", +" \"No environmental forcing data was supplied. Solving using time points of observations.\"", +"##1## GeneralEvent", +" \"Skipping optimisation: only the result of the given parameters will be computed\"", +"##1## DebugEvent", +" \"Observations occur on a fixed temporal resolution: Years PositiveInt 1.\"", +"##1## DebugEvent", +" \"No environmental forcing data was supplied. Solving using time points of observations.\"", +"##1## DebugEvent", +" \"Observations occur on a fixed temporal resolution: Years PositiveInt 1.\"", +"##1## DebugEvent", +" \"No environmental forcing data was supplied. Solving using time points of observations.\"", +"##1## GeneralEvent", +" \"Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1).\"", +"##1## DebugEvent", +" \"Observations occur on a fixed temporal resolution: Years PositiveInt 1.\"", +"##1## DebugEvent", +" \"No environmental forcing data was supplied. Solving using time points of observations.\"", +"##1## GeneralEvent", +" \"[Optimisation] Initial theta is [|0.04560414322; 0.4458347169; 0.007666657133; 0.1825123468; -0.091774904;", +" 0.02763088772; 0.06570124545|]\"", +"##1## GeneralEvent \"[Optimisation] Starting MCMC Random Walk\"", +"##1## DebugEvent", +" \"Observations occur on a fixed temporal resolution: Years PositiveInt 1.\"", +"##1## DebugEvent", +" \"No environmental forcing data was supplied. Solving using time points of observations.\"", +"##1## DebugEvent", +" \"Observations occur on a fixed temporal resolution: Years PositiveInt 1.\"", +"##1## DebugEvent", +" \"No environmental forcing data was supplied. Solving using time points of observations.\""] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }], + "source": [ + "let testResult =\n", + " ``predator-prey`` \n", + " |\u003e Bristlecone.testModel engine testSettings\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "We can plot the test results to check the fit.\n", + "\n", + "\u003cdiv\u003e\u003cdiv id=\"8e394d67-6259-4576-9cf7-17074b5cf9ac\"\u003e\u003c!-- Plotly chart will be drawn inside this DIV --\u003e\u003c/div\u003e\u003cscript type=\"text/javascript\"\u003evar renderPlotly_8e394d67625945769cf717074b5cf9ac = function() {\n", + " var data = [{\"type\":\"scatter\",\"name\":\"Modelled\",\"mode\":\"lines\",\"x\":[\"1970-01-01T00:00:00\",\"1971-01-01T00:00:00\",\"1972-01-01T00:00:00\",\"1973-01-01T00:00:00\",\"1974-01-01T00:00:00\",\"1975-01-01T00:00:00\",\"1976-01-01T00:00:00\",\"1977-01-01T00:00:00\",\"1978-01-01T00:00:00\",\"1979-01-01T00:00:00\",\"1980-01-01T00:00:00\",\"1981-01-01T00:00:00\",\"1982-01-01T00:00:00\",\"1983-01-01T00:00:00\",\"1984-01-01T00:00:00\",\"1985-01-01T00:00:00\",\"1986-01-01T00:00:00\",\"1987-01-01T00:00:00\",\"1988-01-01T00:00:00\",\"1989-01-01T00:00:00\",\"1990-01-01T00:00:00\",\"1991-01-01T00:00:00\",\"1992-01-01T00:00:00\",\"1993-01-01T00:00:00\",\"1994-01-01T00:00:00\",\"1995-01-01T00:00:00\",\"1996-01-01T00:00:00\",\"1997-01-01T00:00:00\",\"1998-01-01T00:00:00\",\"1999-01-01T00:00:00\",\"2000-01-01T00:00:00\"],\"y\":[20.31085417247745,9.384520009425888,4.237363963482203,1.3078609225891995,0.35879552483067545,0.11340792218156279,0.04491826297186076,0.022141176342121836,0.01319584445101078,0.009229100530277645,0.0073783925502052565,0.006594853856208175,0.00646884629061901,0.006856457690069245,0.007752021174777773,0.00924902175598271,0.011541004612456553,0.014948860312604577,0.019974658716474962,0.0273903711950456,0.03837771684756267,0.054745747208910754,0.07926807794387472,0.11620497495606866,0.17211127390583109,0.25708600734677356,0.38670348740456273,0.5849927050381523,0.8890218597794526,1.3559214084837734,2.073560413200366],\"marker\":{},\"line\":{},\"xaxis\":\"x\",\"yaxis\":\"y\"},{\"type\":\"scatter\",\"name\":\"Observed\",\"mode\":\"lines\",\"x\":[\"1970-01-01T00:00:00\",\"1971-01-01T00:00:00\",\"1972-01-01T00:00:00\",\"1973-01-01T00:00:00\",\"1974-01-01T00:00:00\",\"1975-01-01T00:00:00\",\"1976-01-01T00:00:00\",\"1977-01-01T00:00:00\",\"1978-01-01T00:00:00\",\"1979-01-01T00:00:00\",\"1980-01-01T00:00:00\",\"1981-01-01T00:00:00\",\"1982-01-01T00:00:00\",\"1983-01-01T00:00:00\",\"1984-01-01T00:00:00\",\"1985-01-01T00:00:00\",\"1986-01-01T00:00:00\",\"1987-01-01T00:00:00\",\"1988-01-01T00:00:00\",\"1989-01-01T00:00:00\",\"1990-01-01T00:00:00\",\"1991-01-01T00:00:00\",\"1992-01-01T00:00:00\",\"1993-01-01T00:00:00\",\"1994-01-01T00:00:00\",\"1995-01-01T00:00:00\",\"1996-01-01T00:00:00\",\"1997-01-01T00:00:00\",\"1998-01-01T00:00:00\",\"1999-01-01T00:00:00\",\"2000-01-01T00:00:00\"],\"y\":[50.002293567907756,4.667413939424235,45.68989016442529,6.644334169658116,39.0838292264984,3.0046173374087735,11.79264555278822,14.20132215137105,7.831813750354895,5.570655990305391,2.931333114884879,1.2121213744959527,0.3879458856339308,0.1075050188788601,0.03802180436412593,0.016869567864666517,-0.002439256501094931,0.004898586102979717,0.00035158160500896806,0.0015881304731893147,0.005202007791346569,0.003922984803924373,-0.0036532353105738356,0.00438668929347986,-0.006154163624599034,0.002839185055472138,0.008419669144947713,0.001225989948617991,-0.0035549790961582396,-0.004500535593108821,-0.0008336277421045981],\"marker\":{},\"line\":{},\"xaxis\":\"x\",\"yaxis\":\"y\"},{\"type\":\"scatter\",\"name\":\"Modelled\",\"mode\":\"lines\",\"x\":[\"1970-01-01T00:00:00\",\"1971-01-01T00:00:00\",\"1972-01-01T00:00:00\",\"1973-01-01T00:00:00\",\"1974-01-01T00:00:00\",\"1975-01-01T00:00:00\",\"1976-01-01T00:00:00\",\"1977-01-01T00:00:00\",\"1978-01-01T00:00:00\",\"1979-01-01T00:00:00\",\"1980-01-01T00:00:00\",\"1981-01-01T00:00:00\",\"1982-01-01T00:00:00\",\"1983-01-01T00:00:00\",\"1984-01-01T00:00:00\",\"1985-01-01T00:00:00\",\"1986-01-01T00:00:00\",\"1987-01-01T00:00:00\",\"1988-01-01T00:00:00\",\"1989-01-01T00:00:00\",\"1990-01-01T00:00:00\",\"1991-01-01T00:00:00\",\"1992-01-01T00:00:00\",\"1993-01-01T00:00:00\",\"1994-01-01T00:00:00\",\"1995-01-01T00:00:00\",\"1996-01-01T00:00:00\",\"1997-01-01T00:00:00\",\"1998-01-01T00:00:00\",\"1999-01-01T00:00:00\",\"2000-01-01T00:00:00\"],\"y\":[311.05525334083376,329.4825976489617,306.2303920689401,273.74087985282375,234.4106165492792,197.06163699784315,164.7203815389409,137.4380981649079,114.59894535838708,95.5287947066887,79.62200737937334,66.36008180909963,55.30598108721092,46.09353170636751,38.41673927106639,32.02023197350017,26.691043447049413,22.25165965497879,18.554179362826687,15.475429701280689,12.912891551234097,10.781308557771165,9.009873288991304,7.539902975178914,6.322935716592422,5.3191977304849285,4.496416912373858,3.8289959644325187,3.297628565651376,2.889591382578217,2.6002987607891956],\"marker\":{},\"line\":{},\"xaxis\":\"x2\",\"yaxis\":\"y2\"},{\"type\":\"scatter\",\"name\":\"Observed\",\"mode\":\"lines\",\"x\":[\"1970-01-01T00:00:00\",\"1971-01-01T00:00:00\",\"1972-01-01T00:00:00\",\"1973-01-01T00:00:00\",\"1974-01-01T00:00:00\",\"1975-01-01T00:00:00\",\"1976-01-01T00:00:00\",\"1977-01-01T00:00:00\",\"1978-01-01T00:00:00\",\"1979-01-01T00:00:00\",\"1980-01-01T00:00:00\",\"1981-01-01T00:00:00\",\"1982-01-01T00:00:00\",\"1983-01-01T00:00:00\",\"1984-01-01T00:00:00\",\"1985-01-01T00:00:00\",\"1986-01-01T00:00:00\",\"1987-01-01T00:00:00\",\"1988-01-01T00:00:00\",\"1989-01-01T00:00:00\",\"1990-01-01T00:00:00\",\"1991-01-01T00:00:00\",\"1992-01-01T00:00:00\",\"1993-01-01T00:00:00\",\"1994-01-01T00:00:00\",\"1995-01-01T00:00:00\",\"1996-01-01T00:00:00\",\"1997-01-01T00:00:00\",\"1998-01-01T00:00:00\",\"1999-01-01T00:00:00\",\"2000-01-01T00:00:00\"],\"y\":[74.99781059146544,413.7466385558921,73.45402742405346,367.691669374127,95.26906916663124,359.53512608111276,255.89731147368676,212.37900796827614,237.83749476788276,229.145763646121,224.1570690089654,213.44174710331242,197.308288299878,178.94060936430353,161.03068330598938,144.54618476158421,129.65510644151777,116.26546951053955,104.24217409945805,93.46612735054507,83.82316863975477,75.14399739854785,67.38301933820789,60.4172145962425,54.17005633423483,48.571923335892315,43.55074573300099,39.03517668963042,35.00696058576195,31.387014511087724,28.154025987094325],\"marker\":{},\"line\":{},\"xaxis\":\"x2\",\"yaxis\":\"y2\"}];\n", + " var layout = {\"width\":600,\"height\":600,\"template\":{\"layout\":{\"title\":{\"x\":0.05},\"font\":{\"color\":\"rgba(42, 63, 95, 1.0)\"},\"paper_bgcolor\":\"rgba(255, 255, 255, 1.0)\",\"plot_bgcolor\":\"rgba(229, 236, 246, 1.0)\",\"autotypenumbers\":\"strict\",\"colorscale\":{\"diverging\":[[0.0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1.0,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}},\"geo\":{\"showland\":true,\"landcolor\":\"rgba(229, 236, 246, 1.0)\",\"showlakes\":true,\"lakecolor\":\"rgba(255, 255, 255, 1.0)\",\"subunitcolor\":\"rgba(255, 255, 255, 1.0)\",\"bgcolor\":\"rgba(255, 255, 255, 1.0)\"},\"mapbox\":{\"style\":\"light\"},\"polar\":{\"bgcolor\":\"rgba(229, 236, 246, 1.0)\",\"radialaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"ticks\":\"\"},\"angularaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true},\"yaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true},\"zaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true}},\"ternary\":{\"aaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"baxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"caxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"bgcolor\":\"rgba(229, 236, 246, 1.0)\"},\"xaxis\":{\"title\":{\"standoff\":15},\"ticks\":\"\",\"automargin\":\"height+width+left+right+top+bottom\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinewidth\":2.0},\"yaxis\":{\"title\":{\"standoff\":15},\"ticks\":\"\",\"automargin\":\"height+width+left+right+top+bottom\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinewidth\":2.0},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"shapedefaults\":{\"line\":{\"color\":\"rgba(42, 63, 95, 1.0)\"}},\"colorway\":[\"rgba(99, 110, 250, 1.0)\",\"rgba(239, 85, 59, 1.0)\",\"rgba(0, 204, 150, 1.0)\",\"rgba(171, 99, 250, 1.0)\",\"rgba(255, 161, 90, 1.0)\",\"rgba(25, 211, 243, 1.0)\",\"rgba(255, 102, 146, 1.0)\",\"rgba(182, 232, 128, 1.0)\",\"rgba(255, 151, 255, 1.0)\",\"rgba(254, 203, 82, 1.0)\"]},\"data\":{\"bar\":[{\"marker\":{\"line\":{\"color\":\"rgba(229, 236, 246, 1.0)\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"error_x\":{\"color\":\"rgba(42, 63, 95, 1.0)\"},\"error_y\":{\"color\":\"rgba(42, 63, 95, 1.0)\"}}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"rgba(229, 236, 246, 1.0)\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}}}],\"carpet\":[{\"aaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"endlinecolor\":\"rgba(42, 63, 95, 1.0)\",\"minorgridcolor\":\"rgba(255, 255, 255, 1.0)\",\"startlinecolor\":\"rgba(42, 63, 95, 1.0)\"},\"baxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"endlinecolor\":\"rgba(42, 63, 95, 1.0)\",\"minorgridcolor\":\"rgba(255, 255, 255, 1.0)\",\"startlinecolor\":\"rgba(42, 63, 95, 1.0)\"}}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}}}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"pie\":[{\"automargin\":true}],\"scatter\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}},\"line\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgba(235, 240, 248, 1.0)\"},\"line\":{\"color\":\"rgba(255, 255, 255, 1.0)\"}},\"header\":{\"fill\":{\"color\":\"rgba(200, 212, 227, 1.0)\"},\"line\":{\"color\":\"rgba(255, 255, 255, 1.0)\"}}}]}},\"title\":{\"text\":\"lynx\"},\"xaxis\":{},\"yaxis\":{},\"xaxis2\":{},\"yaxis2\":{},\"grid\":{\"rows\":2,\"columns\":1,\"pattern\":\"independent\"}};\n", + " var config = {\"responsive\":true};\n", + " Plotly.newPlot(\u00278e394d67-6259-4576-9cf7-17074b5cf9ac\u0027, data, layout, config);\n", + "};\n", + "renderPlotly_8e394d67625945769cf717074b5cf9ac();\n", + "\u003c/script\u003e\u003c/div\u003e\n", + "\n", + "### Fitting to real data\n", + "\n", + "First, we must load in the real data, which is in a CSV file. Here, we will use\n", + "the FSharp.Data type provider to read in the CSV file (see [the FSharp.Data docs](http://fsprojects.github.io/FSharp.Data/library/CsvProvider.html)\n", + "for further information on how to use the library). We place the raw data into\n", + "a Bristlecone `TimeSeries` type using `TimeSeries.fromObservations`:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 9, "outputs": [ + { + "data": { + "text/plain": ["map", +" [(ShortCode \"hare\",", +" FixedTimeSeries", +" ((19.58, 1/1/1845 12:00:00 AM),", +" TimeSteps", +" [|(19.6, 365.00:00:00); (19.61, 365.00:00:00); (11.99, 365.00:00:00);", +" (28.04, 366.00:00:00); (58.0, 365.00:00:00); (74.6, 365.00:00:00);", +" (75.09, 365.00:00:00); (88.48, 366.00:00:00); (61.28, 365.00:00:00);", +" (74.67, 365.00:00:00); (88.06, 365.00:00:00); (68.51, 366.00:00:00);", +" (32.19, 365.00:00:00); (12.64, 365.00:00:00); (21.49, 365.00:00:00);", +" (30.35, 366.00:00:00); (2.18, 365.00:00:00); (152.65, 365.00:00:00);", +" (148.36, 365.00:00:00); (85.81, 366.00:00:00); (41.41, 365.00:00:00);", +" (14.75, 365.00:00:00); (2.28, 365.00:00:00); (5.91, 366.00:00:00);", +" (9.95, 365.00:00:00); (10.44, 365.00:00:00); (70.64, 365.00:00:00);", +" (50.12, 366.00:00:00); (50.13, 365.00:00:00); (101.25, 365.00:00:00);", +" (97.12, 365.00:00:00); (86.51, 366.00:00:00); (72.17, 365.00:00:00);", +" (38.32, 365.00:00:00); (10.11, 365.00:00:00); (7.74, 366.00:00:00);", +" (9.67, 365.00:00:00); (43.12, 365.00:00:00); (52.21, 365.00:00:00);", +" (134.85, 366.00:00:00); (134.86, 365.00:00:00); (103.79, 365.00:00:00);", +" (46.1, 365.00:00:00); (15.03, 366.00:00:00); (24.2, 365.00:00:00);", +" (41.65, 365.00:00:00); (52.34, 365.00:00:00); (53.78, 366.00:00:00);", +" (70.4, 365.00:00:00); (85.81, 365.00:00:00); (56.69, 365.00:00:00);", +" (16.59, 366.00:00:00); (6.16, 365.00:00:00); (2.3, 365.00:00:00);", +" (12.82, 365.00:00:00); (4.72, 365.00:00:00); (4.73, 365.00:00:00);", +" (37.22, 365.00:00:00); (69.72, 365.00:00:00); (57.78, 366.00:00:00);", +" (28.68, 365.00:00:00); (23.37, 365.00:00:00); (21.54, 365.00:00:00);", +" (26.34, 366.00:00:00); (53.1, 365.00:00:00); (68.48, 365.00:00:00);", +" (75.58, 365.00:00:00); (57.92, 366.00:00:00); (40.97, 365.00:00:00);", +" (24.95, 365.00:00:00); (12.59, 365.00:00:00); (4.97, 366.00:00:00);", +" (4.5, 365.00:00:00); (11.21, 365.00:00:00); (56.6, 365.00:00:00);", +" (69.63, 366.00:00:00); (77.74, 365.00:00:00); (80.53, 365.00:00:00);", +" (73.38, 365.00:00:00); (36.93, 366.00:00:00); (4.64, 365.00:00:00);", +" (2.54, 365.00:00:00); (1.8, 365.00:00:00); (2.39, 366.00:00:00);", +" (4.23, 365.00:00:00); (19.52, 365.00:00:00); (82.11, 365.00:00:00);", +" (89.76, 366.00:00:00); (81.66, 365.00:00:00); (15.76, 365.00:00:00)|]));", +" (ShortCode \"lynx\",", +" FixedTimeSeries", +" ((30.09, 1/1/1845 12:00:00 AM),", +" TimeSteps", +" [|(45.15, 365.00:00:00); (49.15, 365.00:00:00); (39.52, 365.00:00:00);", +" (21.23, 366.00:00:00); (8.42, 365.00:00:00); (5.56, 365.00:00:00);", +" (5.08, 365.00:00:00); (10.17, 366.00:00:00); (19.6, 365.00:00:00);", +" (32.91, 365.00:00:00); (34.38, 365.00:00:00); (29.59, 366.00:00:00);", +" (21.3, 365.00:00:00); (13.69, 365.00:00:00); (7.65, 365.00:00:00);", +" (4.08, 366.00:00:00); (4.09, 365.00:00:00); (14.33, 365.00:00:00);", +" (38.22, 365.00:00:00); (60.78, 366.00:00:00); (70.77, 365.00:00:00);", +" (72.77, 365.00:00:00); (42.68, 365.00:00:00); (16.39, 366.00:00:00);", +" (9.83, 365.00:00:00); (5.8, 365.00:00:00); (5.26, 365.00:00:00);", +" (18.91, 366.00:00:00); (30.95, 365.00:00:00); (31.18, 365.00:00:00);", +" (46.34, 365.00:00:00); (45.77, 366.00:00:00); (44.15, 365.00:00:00);", +" (36.33, 365.00:00:00); (12.03, 365.00:00:00); (12.6, 366.00:00:00);", +" (18.34, 365.00:00:00); (35.14, 365.00:00:00); (43.77, 365.00:00:00);", +" (65.69, 366.00:00:00); (79.35, 365.00:00:00); (51.65, 365.00:00:00);", +" (32.59, 365.00:00:00); (22.45, 366.00:00:00); (16.16, 365.00:00:00);", +" (14.12, 365.00:00:00); (20.38, 365.00:00:00); (33.33, 366.00:00:00);", +" (46.0, 365.00:00:00); (51.41, 365.00:00:00); (46.43, 365.00:00:00);", +" (33.68, 366.00:00:00); (18.01, 365.00:00:00); (8.86, 365.00:00:00);", +" (7.13, 365.00:00:00); (9.47, 365.00:00:00); (14.86, 365.00:00:00);", +" (31.47, 365.00:00:00); (60.57, 365.00:00:00); (63.51, 366.00:00:00);", +" (54.7, 365.00:00:00); (6.3, 365.00:00:00); (3.41, 365.00:00:00);", +" (5.44, 366.00:00:00); (11.65, 365.00:00:00); (20.35, 365.00:00:00);", +" (32.88, 365.00:00:00); (39.55, 366.00:00:00); (43.36, 365.00:00:00);", +" (40.83, 365.00:00:00); (30.36, 365.00:00:00); (17.18, 366.00:00:00);", +" (6.82, 365.00:00:00); (3.19, 365.00:00:00); (3.52, 365.00:00:00);", +" (9.94, 366.00:00:00); (20.3, 365.00:00:00); (31.99, 365.00:00:00);", +" (42.36, 365.00:00:00); (49.08, 366.00:00:00); (53.99, 365.00:00:00);", +" (52.25, 365.00:00:00); (37.7, 365.00:00:00); (19.14, 366.00:00:00);", +" (6.98, 365.00:00:00); (8.31, 365.00:00:00); (16.01, 365.00:00:00);", +" (24.82, 366.00:00:00); (29.7, 365.00:00:00); (35.4, 365.00:00:00)|]))]"] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }], + "source": [ + "[\u003cLiteral\u003e]\n", + "let ResolutionFolder = __SOURCE_DIRECTORY__\n", + "\n", + "type PopulationData = FSharp.Data.CsvProvider\u003c\"data/lynx-hare.csv\", ResolutionFolder = ResolutionFolder\u003e\n", + "\n", + "let data = \n", + " let csv = PopulationData.Load (__SOURCE_DIRECTORY__ + \"/data/lynx-hare.csv\")\n", + " [ (code \"hare\").Value, Time.TimeSeries.fromObservations (csv.Rows |\u003e Seq.map(fun r -\u003e float r.Hare, r.Year))\n", + " (code \"lynx\").Value, Time.TimeSeries.fromObservations (csv.Rows |\u003e Seq.map(fun r -\u003e float r.Lynx, r.Year)) ] |\u003e Map.ofList\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "Once the data are in Bristlecone `TimeSeries` we can run `Bristlecone.fit`, which is\n", + "the main fitting function of the Bristlecone library.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 11, "outputs": [ + { + "data": { + "text/plain": ["Ok", +" { ResultId = df83b1d4-19fb-4168-bb7c-73aeb7006a9e", +" Likelihood = 161725.5183", +" Parameters =", +" Pool", +" (map", +" [(ShortCode \"Δ\",", +" Parameter (Unconstrained, Detached, Estimated -0.03600395794));", +" (ShortCode \"α\",", +" Parameter (Unconstrained, Detached, Estimated 0.05889427162));", +" (ShortCode \"β\",", +" Parameter (Unconstrained, Detached, Estimated -0.0572017005));", +" (ShortCode \"γ\",", +" Parameter (Unconstrained, Detached, Estimated 0.3963112829));", +" (ShortCode \"ρ\",", +" Parameter (Unconstrained, Detached, Estimated -0.7329319289));", +" (ShortCode \"σ[x]\",", +" Parameter (PositiveOnly, Detached, Estimated 0.0402635584));", +" (ShortCode \"σ[y]\",", +" Parameter (PositiveOnly, Detached, Estimated 0.1679047933))])", +" Series =", +" map", +" [(ShortCode \"hare\",", +" FixedTimeSeries", +" (({ Fit = 48.97948066", +" Obs = 19.58 }, 1/1/1845 12:00:00 AM),", +" TimeSteps", +" [|({ Fit = 55.28946519", +" Obs = 19.6 }, 365.00:00:00); ({ Fit = 59.64672094", +" Obs = 19.61 }, 365.00:00:00);", +" ({ Fit = 63.11542067", +" Obs = 11.99 }, 365.00:00:00); ({ Fit = 65.48611048", +" Obs = 28.04 }, 366.00:00:00);", +" ({ Fit = 65.38963298", +" Obs = 58.0 }, 365.00:00:00); ({ Fit = 59.36101124", +" Obs = 74.6 }, 365.00:00:00);", +" ({ Fit = 47.80253297", +" Obs = 75.09 }, 365.00:00:00); ({ Fit = 49.43514849", +" Obs = 88.48 }, 366.00:00:00);", +" ({ Fit = 48.31813548", +" Obs = 61.28 }, 365.00:00:00); ({ Fit = 48.96762773", +" Obs = 74.67 }, 365.00:00:00);", +" ({ Fit = 48.49743848", +" Obs = 88.06 }, 365.00:00:00); ({ Fit = 48.7669053", +" Obs = 68.51 }, 366.00:00:00);", +" ({ Fit = 48.55866582", +" Obs = 32.19 }, 365.00:00:00); ({ Fit = 48.6726493", +" Obs = 12.64 }, 365.00:00:00);", +" ({ Fit = 48.57712909", +" Obs = 21.49 }, 365.00:00:00); ({ Fit = 48.62548059", +" Obs = 30.35 }, 366.00:00:00);", +" ({ Fit = 48.5804187", +" Obs = 2.18 }, 365.00:00:00); ({ Fit = 48.60065825", +" Obs = 152.65 }, 365.00:00:00);", +" ({ Fit = 48.57885336", +" Obs = 148.36 }, 365.00:00:00); ({ Fit = 48.58703836", +" Obs = 85.81 }, 366.00:00:00);", +" ({ Fit = 48.57621704", +" Obs = 41.41 }, 365.00:00:00); ({ Fit = 48.57929735", +" Obs = 14.75 }, 365.00:00:00);", +" ({ Fit = 48.5737826", +" Obs = 2.28 }, 365.00:00:00); ({ Fit = 48.57476603", +" Obs = 5.91 }, 366.00:00:00);", +" ({ Fit = 48.57187543", +" Obs = 9.95 }, 365.00:00:00); ({ Fit = 48.57204853", +" Obs = 10.44 }, 365.00:00:00);", +" ({ Fit = 48.57048838", +" Obs = 70.64 }, 365.00:00:00); ({ Fit = 48.57038684", +" Obs = 50.12 }, 366.00:00:00);", +" ({ Fit = 48.56951967", +" Obs = 50.13 }, 365.00:00:00); ({ Fit = 48.56935516", +" Obs = 101.25 }, 365.00:00:00);", +" ({ Fit = 48.56885941", +" Obs = 97.12 }, 365.00:00:00); ({ Fit = 48.5687071", +" Obs = 86.51 }, 366.00:00:00);", +" ({ Fit = 48.56841632", +" Obs = 72.17 }, 365.00:00:00); ({ Fit = 48.56829641", +" Obs = 38.32 }, 365.00:00:00);", +" ({ Fit = 48.568122", +" Obs = 10.11 }, 365.00:00:00); ({ Fit = 48.56803443", +" Obs = 7.74 }, 366.00:00:00);", +" ({ Fit = 48.56792786", +" Obs = 9.67 }, 365.00:00:00); ({ Fit = 48.56786651", +" Obs = 43.12 }, 365.00:00:00);", +" ({ Fit = 48.56780041", +" Obs = 52.21 }, 365.00:00:00); ({ Fit = 48.5677585", +" Obs = 134.85 }, 366.00:00:00);", +" ({ Fit = 48.56771702", +" Obs = 134.86 }, 365.00:00:00); ({ Fit = 48.56768885", +" Obs = 103.79 }, 365.00:00:00);", +" ({ Fit = 48.56766258", +" Obs = 46.1 }, 365.00:00:00); ({ Fit = 48.56764385", +" Obs = 15.03 }, 366.00:00:00);", +" ({ Fit = 48.5676271", +" Obs = 24.2 }, 365.00:00:00); ({ Fit = 48.56761473", +" Obs = 41.65 }, 365.00:00:00);", +" ({ Fit = 48.567604", +" Obs = 52.34 }, 365.00:00:00); ({ Fit = 48.56759588", +" Obs = 53.78 }, 366.00:00:00);", +" ({ Fit = 48.56758898", +" Obs = 70.4 }, 365.00:00:00); ({ Fit = 48.56758367", +" Obs = 85.81 }, 365.00:00:00);", +" ({ Fit = 48.56757922", +" Obs = 56.69 }, 365.00:00:00); ({ Fit = 48.56757575", +" Obs = 16.59 }, 366.00:00:00);", +" ({ Fit = 48.56757287", +" Obs = 6.16 }, 365.00:00:00); ({ Fit = 48.56757061", +" Obs = 2.3 }, 365.00:00:00);", +" ({ Fit = 48.56756875", +" Obs = 12.82 }, 365.00:00:00); ({ Fit = 48.56756728", +" Obs = 4.72 }, 365.00:00:00);", +" ({ Fit = 48.56756607", +" Obs = 4.73 }, 365.00:00:00); ({ Fit = 48.56756512", +" Obs = 37.22 }, 365.00:00:00);", +" ({ Fit = 48.56756434", +" Obs = 69.72 }, 365.00:00:00); ({ Fit = 48.56756371", +" Obs = 57.78 }, 366.00:00:00);", +" ({ Fit = 48.56756321", +" Obs = 28.68 }, 365.00:00:00); ({ Fit = 48.5675628", +" Obs = 23.37 }, 365.00:00:00);", +" ({ Fit = 48.56756248", +" Obs = 21.54 }, 365.00:00:00); ({ Fit = 48.56756221", +" Obs = 26.34 }, 366.00:00:00);", +" ({ Fit = 48.567562", +" Obs = 53.1 }, 365.00:00:00); ({ Fit = 48.56756183", +" Obs = 68.48 }, 365.00:00:00);", +" ({ Fit = 48.56756169", +" Obs = 75.58 }, 365.00:00:00); ({ Fit = 48.56756158", +" Obs = 57.92 }, 366.00:00:00);", +" ({ Fit = 48.56756149", +" Obs = 40.97 }, 365.00:00:00); ({ Fit = 48.56756142", +" Obs = 24.95 }, 365.00:00:00);", +" ({ Fit = 48.56756136", +" Obs = 12.59 }, 365.00:00:00); ({ Fit = 48.56756131", +" Obs = 4.97 }, 366.00:00:00);", +" ({ Fit = 48.56756128", +" Obs = 4.5 }, 365.00:00:00); ({ Fit = 48.56756125", +" Obs = 11.21 }, 365.00:00:00);", +" ({ Fit = 48.56756122", +" Obs = 56.6 }, 365.00:00:00); ({ Fit = 48.5675612", +" Obs = 69.63 }, 366.00:00:00);", +" ({ Fit = 48.56756119", +" Obs = 77.74 }, 365.00:00:00); ({ Fit = 48.56756117", +" Obs = 80.53 }, 365.00:00:00);", +" ({ Fit = 48.56756116", +" Obs = 73.38 }, 365.00:00:00); ({ Fit = 48.56756115", +" Obs = 36.93 }, 366.00:00:00);", +" ({ Fit = 48.56756115", +" Obs = 4.64 }, 365.00:00:00); ({ Fit = 48.56756114", +" Obs = 2.54 }, 365.00:00:00);", +" ({ Fit = 48.56756114", +" Obs = 1.8 }, 365.00:00:00); ({ Fit = 48.56756113", +" Obs = 2.39 }, 366.00:00:00);", +" ({ Fit = 48.56756113", +" Obs = 4.23 }, 365.00:00:00); ({ Fit = 48.56756113", +" Obs = 19.52 }, 365.00:00:00);", +" ({ Fit = 48.56756113", +" Obs = 82.11 }, 365.00:00:00); ({ Fit = 48.56756113", +" Obs = 89.76 }, 366.00:00:00);", +" ({ Fit = 48.56756113", +" Obs = 81.66 }, 365.00:00:00); ({ Fit = 48.56756112", +" Obs = 15.76 }, 365.00:00:00)|]));", +" (ShortCode \"lynx\",", +" FixedTimeSeries", +" (({ Fit = 6.777390842", +" Obs = 30.09 }, 1/1/1845 12:00:00 AM),", +" TimeSteps", +" [|({ Fit = 4.186350509", +" Obs = 45.15 }, 365.00:00:00); ({ Fit = 3.417986048", +" Obs = 49.15 }, 365.00:00:00);", +" ({ Fit = 3.506861", +" Obs = 39.52 }, 365.00:00:00); ({ Fit = 4.510855681", +" Obs = 21.23 }, 366.00:00:00);", +" ({ Fit = 7.255981932", +" Obs = 8.42 }, 365.00:00:00); ({ Fit = 13.77009301", +" Obs = 5.56 }, 365.00:00:00);", +" ({ Fit = 22.94139975", +" Obs = 5.08 }, 365.00:00:00); ({ Fit = 21.81606632", +" Obs = 10.17 }, 366.00:00:00);", +" ({ Fit = 22.69996507", +" Obs = 19.6 }, 365.00:00:00); ({ Fit = 22.27096224", +" Obs = 32.91 }, 365.00:00:00);", +" ({ Fit = 22.65570078", +" Obs = 34.38 }, 365.00:00:00); ({ Fit = 22.48901678", +" Obs = 29.59 }, 366.00:00:00);", +" ({ Fit = 22.66714995", +" Obs = 21.3 }, 365.00:00:00); ({ Fit = 22.603698", +" Obs = 13.69 }, 365.00:00:00);", +" ({ Fit = 22.69011213", +" Obs = 7.65 }, 365.00:00:00); ({ Fit = 22.66773814", +" Obs = 4.08 }, 366.00:00:00);", +" ({ Fit = 22.71136497", +" Obs = 4.09 }, 365.00:00:00); ({ Fit = 22.70501686", +" Obs = 14.33 }, 365.00:00:00);", +" ({ Fit = 22.72786185", +" Obs = 38.22 }, 365.00:00:00); ({ Fit = 22.72737247", +" Obs = 60.78 }, 366.00:00:00);", +" ({ Fit = 22.73975277", +" Obs = 70.77 }, 365.00:00:00); ({ Fit = 22.74107167", +" Obs = 72.77 }, 365.00:00:00);", +" ({ Fit = 22.74799912", +" Obs = 42.68 }, 365.00:00:00); ({ Fit = 22.74959988", +" Obs = 16.39 }, 366.00:00:00);", +" ({ Fit = 22.75359056", +" Obs = 9.83 }, 365.00:00:00); ({ Fit = 22.75497058", +" Obs = 5.8 }, 365.00:00:00);", +" ({ Fit = 22.75732884", +" Obs = 5.26 }, 365.00:00:00); ({ Fit = 22.75838137", +" Obs = 18.91 }, 366.00:00:00);", +" ({ Fit = 22.7598053", +" Obs = 30.95 }, 365.00:00:00); ({ Fit = 22.76056076", +" Obs = 31.18 }, 365.00:00:00);", +" ({ Fit = 22.76143576", +" Obs = 46.34 }, 365.00:00:00); ({ Fit = 22.76195949", +" Obs = 45.77 }, 366.00:00:00);", +" ({ Fit = 22.76250469", +" Obs = 44.15 }, 365.00:00:00); ({ Fit = 22.76286007", +" Obs = 36.33 }, 365.00:00:00);", +" ({ Fit = 22.76320344", +" Obs = 12.03 }, 365.00:00:00); ({ Fit = 22.76344125", +" Obs = 12.6 }, 366.00:00:00);", +" ({ Fit = 22.76365926", +" Obs = 18.34 }, 365.00:00:00); ({ Fit = 22.76381693", +" Obs = 35.14 }, 365.00:00:00);", +" ({ Fit = 22.76395619", +" Obs = 43.77 }, 365.00:00:00); ({ Fit = 22.76406006", +" Obs = 65.69 }, 366.00:00:00);", +" ({ Fit = 22.7641494", +" Obs = 79.35 }, 365.00:00:00); ({ Fit = 22.76421753", +" Obs = 51.65 }, 365.00:00:00);", +" ({ Fit = 22.76427505", +" Obs = 32.59 }, 365.00:00:00); ({ Fit = 22.7643196", +" Obs = 22.45 }, 366.00:00:00);", +" ({ Fit = 22.76435671", +" Obs = 16.16 }, 365.00:00:00); ({ Fit = 22.76438577", +" Obs = 14.12 }, 365.00:00:00);", +" ({ Fit = 22.76440976", +" Obs = 20.38 }, 365.00:00:00); ({ Fit = 22.7644287", +" Obs = 33.33 }, 366.00:00:00);", +" ({ Fit = 22.76444422", +" Obs = 46.0 }, 365.00:00:00); ({ Fit = 22.76445654", +" Obs = 51.41 }, 365.00:00:00);", +" ({ Fit = 22.76446659", +" Obs = 46.43 }, 365.00:00:00); ({ Fit = 22.76447461", +" Obs = 33.68 }, 366.00:00:00);", +" ({ Fit = 22.76448112", +" Obs = 18.01 }, 365.00:00:00); ({ Fit = 22.76448633", +" Obs = 8.86 }, 365.00:00:00);", +" ({ Fit = 22.76449056", +" Obs = 7.13 }, 365.00:00:00); ({ Fit = 22.76449394", +" Obs = 9.47 }, 365.00:00:00);", +" ({ Fit = 22.76449668", +" Obs = 14.86 }, 365.00:00:00); ({ Fit = 22.76449888", +" Obs = 31.47 }, 365.00:00:00);", +" ({ Fit = 22.76450066", +" Obs = 60.57 }, 365.00:00:00); ({ Fit = 22.76450209", +" Obs = 63.51 }, 366.00:00:00);", +" ({ Fit = 22.76450324", +" Obs = 54.7 }, 365.00:00:00); ({ Fit = 22.76450417", +" Obs = 6.3 }, 365.00:00:00);", +" ({ Fit = 22.76450491", +" Obs = 3.41 }, 365.00:00:00); ({ Fit = 22.76450552", +" Obs = 5.44 }, 366.00:00:00);", +" ({ Fit = 22.764506", +" Obs = 11.65 }, 365.00:00:00); ({ Fit = 22.76450639", +" Obs = 20.35 }, 365.00:00:00);", +" ({ Fit = 22.76450671", +" Obs = 32.88 }, 365.00:00:00); ({ Fit = 22.76450696", +" Obs = 39.55 }, 366.00:00:00);", +" ({ Fit = 22.76450717", +" Obs = 43.36 }, 365.00:00:00); ({ Fit = 22.76450733", +" Obs = 40.83 }, 365.00:00:00);", +" ({ Fit = 22.76450746", +" Obs = 30.36 }, 365.00:00:00); ({ Fit = 22.76450757", +" Obs = 17.18 }, 366.00:00:00);", +" ({ Fit = 22.76450766", +" Obs = 6.82 }, 365.00:00:00); ({ Fit = 22.76450773", +" Obs = 3.19 }, 365.00:00:00);", +" ({ Fit = 22.76450778", +" Obs = 3.52 }, 365.00:00:00); ({ Fit = 22.76450783", +" Obs = 9.94 }, 366.00:00:00);", +" ({ Fit = 22.76450786", +" Obs = 20.3 }, 365.00:00:00); ({ Fit = 22.76450789", +" Obs = 31.99 }, 365.00:00:00);", +" ({ Fit = 22.76450792", +" Obs = 42.36 }, 365.00:00:00); ({ Fit = 22.76450793", +" Obs = 49.08 }, 366.00:00:00);", +" ({ Fit = 22.76450795", +" Obs = 53.99 }, 365.00:00:00); ({ Fit = 22.76450796", +" Obs = 52.25 }, 365.00:00:00);", +" ({ Fit = 22.76450797", +" Obs = 37.7 }, 365.00:00:00); ({ Fit = 22.76450798", +" Obs = 19.14 }, 366.00:00:00);", +" ({ Fit = 22.76450799", +" Obs = 6.98 }, 365.00:00:00); ({ Fit = 22.76450799", +" Obs = 8.31 }, 365.00:00:00);", +" ({ Fit = 22.764508", +" Obs = 16.01 }, 365.00:00:00); ({ Fit = 22.764508", +" Obs = 24.82 }, 366.00:00:00);", +" ({ Fit = 22.764508", +" Obs = 29.7 }, 365.00:00:00); ({ Fit = 22.764508", +" Obs = 35.4 }, 365.00:00:00)|]))]", +" Trace =", +" [(161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]);", +" (161725.5183,", +" [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;", +" -0.7329319289; 0.0402635584; 0.1679047933|]); ...]", +" InternalDynamics =", +" Some", +" (map", +" [(ShortCode \"hare\",", +" [|48.97948066; 55.28946519; 59.64672094; 63.11542067; 65.48611048;", +" 65.38963298; 59.36101124; 47.80253297; 49.43514849; 48.31813548;", +" 48.96762773; 48.49743848; 48.7669053; 48.55866582; 48.6726493;", +" 48.57712909; 48.62548059; 48.5804187; 48.60065825; 48.57885336;", +" 48.58703836; 48.57621704; 48.57929735; 48.5737826; 48.57476603;", +" 48.57187543; 48.57204853; 48.57048838; 48.57038684; 48.56951967;", +" 48.56935516; 48.56885941; 48.5687071; 48.56841632; 48.56829641;", +" 48.568122; 48.56803443; 48.56792786; 48.56786651; 48.56780041;", +" 48.5677585; 48.56771702; 48.56768885; 48.56766258; 48.56764385;", +" 48.5676271; 48.56761473; 48.567604; 48.56759588; 48.56758898;", +" 48.56758367; 48.56757922; 48.56757575; 48.56757287; 48.56757061;", +" 48.56756875; 48.56756728; 48.56756607; 48.56756512; 48.56756434;", +" 48.56756371; 48.56756321; 48.5675628; 48.56756248; 48.56756221;", +" 48.567562; 48.56756183; 48.56756169; 48.56756158; 48.56756149;", +" 48.56756142; 48.56756136; 48.56756131; 48.56756128; 48.56756125;", +" 48.56756122; 48.5675612; 48.56756119; 48.56756117; 48.56756116;", +" 48.56756115; 48.56756115; 48.56756114; 48.56756114; 48.56756113;", +" 48.56756113; 48.56756113; 48.56756113; 48.56756113; 48.56756113;", +" 48.56756112|]);", +" (ShortCode \"lynx\",", +" [|6.777390842; 4.186350509; 3.417986048; 3.506861; 4.510855681;", +" 7.255981932; 13.77009301; 22.94139975; 21.81606632; 22.69996507;", +" 22.27096224; 22.65570078; 22.48901678; 22.66714995; 22.603698;", +" 22.69011213; 22.66773814; 22.71136497; 22.70501686; 22.72786185;", +" 22.72737247; 22.73975277; 22.74107167; 22.74799912; 22.74959988;", +" 22.75359056; 22.75497058; 22.75732884; 22.75838137; 22.7598053;", +" 22.76056076; 22.76143576; 22.76195949; 22.76250469; 22.76286007;", +" 22.76320344; 22.76344125; 22.76365926; 22.76381693; 22.76395619;", +" 22.76406006; 22.7641494; 22.76421753; 22.76427505; 22.7643196;", +" 22.76435671; 22.76438577; 22.76440976; 22.7644287; 22.76444422;", +" 22.76445654; 22.76446659; 22.76447461; 22.76448112; 22.76448633;", +" 22.76449056; 22.76449394; 22.76449668; 22.76449888; 22.76450066;", +" 22.76450209; 22.76450324; 22.76450417; 22.76450491; 22.76450552;", +" 22.764506; 22.76450639; 22.76450671; 22.76450696; 22.76450717;", +" 22.76450733; 22.76450746; 22.76450757; 22.76450766; 22.76450773;", +" 22.76450778; 22.76450783; 22.76450786; 22.76450789; 22.76450792;", +" 22.76450793; 22.76450795; 22.76450796; 22.76450797; 22.76450798;", +" 22.76450799; 22.76450799; 22.764508; 22.764508; 22.764508;", +" 22.764508|])]) }"] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }], + "source": [ + "let endCondition = Optimisation.EndConditions.afterIteration 10000\n", + "\n", + "let result = \n", + " ``predator-prey`` \n", + " |\u003e Bristlecone.fit engine endCondition data\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Inspecting the model fit\n", + "\n", + "The `Bristlecone.fit` function returns an `EstimationResult`, which contains some\n", + "key information that may be used to inspect the model fit:\n", + "\n", + "* Likelihood. The minimum likelihood identified during optimisation.\n", + "\n", + "* Parameters. The parameter set (**θ**) identified at the minimum likelihood.\n", + "\n", + "* Series. A TimeSeries for each variable in the model, which at each time point contains paired Modelled-Observed values.\n", + "\n", + "* Trace. The likelihood and **θ** that occurred at each step in optimisation, with the latest first.\n", + "\n", + "* Internal Dynamics. Not relevant for this simple model.\n", + "\n", + "First, we can use the `Series` to inspect by eye the model fit versus the observed time-series:\n", + "\n", + "\u003cdiv\u003e\u003cdiv id=\"a2bfd5fd-dc86-46c7-813d-e4b198c22392\"\u003e\u003c!-- Plotly chart will be drawn inside this DIV --\u003e\u003c/div\u003e\u003cscript type=\"text/javascript\"\u003evar renderPlotly_a2bfd5fddc8646c7813de4b198c22392 = function() {\n", + " var data = [{\"type\":\"scatter\",\"name\":\"Modelled\",\"mode\":\"lines\",\"x\":[\"1845-01-01T00:00:00+00:00\",\"1846-01-01T00:00:00+00:00\",\"1847-01-01T00:00:00+00:00\",\"1848-01-01T00:00:00+00:00\",\"1849-01-01T00:00:00+00:00\",\"1850-01-01T00:00:00+00:00\",\"1851-01-01T00:00:00+00:00\",\"1852-01-01T00:00:00+00:00\",\"1853-01-01T00:00:00+00:00\",\"1854-01-01T00:00:00+00:00\",\"1855-01-01T00:00:00+00:00\",\"1856-01-01T00:00:00+00:00\",\"1857-01-01T00:00:00+00:00\",\"1858-01-01T00:00:00+00:00\",\"1859-01-01T00:00:00+00:00\",\"1860-01-01T00:00:00+00:00\",\"1861-01-01T00:00:00+00:00\",\"1862-01-01T00:00:00+00:00\",\"1863-01-01T00:00:00+00:00\",\"1864-01-01T00:00:00+00:00\",\"1865-01-01T00:00:00+00:00\",\"1866-01-01T00:00:00+00:00\",\"1867-01-01T00:00:00+00:00\",\"1868-01-01T00:00:00+00:00\",\"1869-01-01T00:00:00+00:00\",\"1870-01-01T00:00:00+00:00\",\"1871-01-01T00:00:00+00:00\",\"1872-01-01T00:00:00+00:00\",\"1873-01-01T00:00:00+00:00\",\"1874-01-01T00:00:00+00:00\",\"1875-01-01T00:00:00+00:00\",\"1876-01-01T00:00:00+00:00\",\"1877-01-01T00:00:00+00:00\",\"1878-01-01T00:00:00+00:00\",\"1879-01-01T00:00:00+00:00\",\"1880-01-01T00:00:00+00:00\",\"1881-01-01T00:00:00+00:00\",\"1882-01-01T00:00:00+00:00\",\"1883-01-01T00:00:00+00:00\",\"1884-01-01T00:00:00+00:00\",\"1885-01-01T00:00:00+00:00\",\"1886-01-01T00:00:00+00:00\",\"1887-01-01T00:00:00+00:00\",\"1888-01-01T00:00:00+00:00\",\"1889-01-01T00:00:00+00:00\",\"1890-01-01T00:00:00+00:00\",\"1891-01-01T00:00:00+00:00\",\"1892-01-01T00:00:00+00:00\",\"1893-01-01T00:00:00+00:00\",\"1894-01-01T00:00:00+00:00\",\"1895-01-01T00:00:00+00:00\",\"1896-01-01T00:00:00+00:00\",\"1897-01-01T00:00:00+00:00\",\"1898-01-01T00:00:00+00:00\",\"1899-01-01T00:00:00+00:00\",\"1900-01-01T00:00:00+00:00\",\"1901-01-01T00:00:00+00:00\",\"1902-01-01T00:00:00+00:00\",\"1903-01-01T00:00:00+00:00\",\"1904-01-01T00:00:00+00:00\",\"1905-01-01T00:00:00+00:00\",\"1906-01-01T00:00:00+00:00\",\"1907-01-01T00:00:00+00:00\",\"1908-01-01T00:00:00+00:00\",\"1909-01-01T00:00:00+00:00\",\"1910-01-01T00:00:00+00:00\",\"1911-01-01T00:00:00+00:00\",\"1912-01-01T00:00:00+00:00\",\"1913-01-01T00:00:00+00:00\",\"1914-01-01T00:00:00+00:00\",\"1915-01-01T00:00:00+00:00\",\"1916-01-01T00:00:00+00:00\",\"1917-01-01T00:00:00+00:00\",\"1918-01-01T00:00:00+00:00\",\"1919-01-01T00:00:00+00:00\",\"1920-01-01T00:00:00+00:00\",\"1921-01-01T00:00:00+00:00\",\"1922-01-01T00:00:00+00:00\",\"1923-01-01T00:00:00+00:00\",\"1924-01-01T00:00:00+00:00\",\"1925-01-01T00:00:00+00:00\",\"1926-01-01T00:00:00+00:00\",\"1927-01-01T00:00:00+00:00\",\"1928-01-01T00:00:00+00:00\",\"1929-01-01T00:00:00+00:00\",\"1930-01-01T00:00:00+00:00\",\"1931-01-01T00:00:00+00:00\",\"1932-01-01T00:00:00+00:00\",\"1933-01-01T00:00:00+00:00\",\"1934-01-01T00:00:00+00:00\",\"1935-01-01T00:00:00+00:00\"],\"y\":[48.97948066192839,55.289465192157934,59.646720942444226,63.11542067153285,65.48611047814362,65.38963297699486,59.36101124442491,47.80253296651508,49.43514848693441,48.318135481072225,48.96762772803491,48.497438481522636,48.76690530109652,48.558665820128795,48.67264929888481,48.57712909461362,48.625480589206475,48.58041870485377,48.60065824523122,48.578853362932016,48.58703836476499,48.576217038608625,48.57929735387195,48.57378260290986,48.57476603002096,48.571875428315884,48.572048532973255,48.570488376124686,48.57038684033532,48.56951966698471,48.56935515972128,48.5688594102052,48.568707099290876,48.56841632095976,48.568296409361565,48.56812200486543,48.56803443421531,48.5679278626546,48.56786651465427,48.567800409727624,48.567758502784265,48.56771701568595,48.567688848043915,48.567662577041105,48.567643846169624,48.56762709851323,48.56761473318275,48.56760400347279,48.56759588121842,48.56758898196436,48.567583665390046,48.567579217380576,48.56757574582317,48.567572872656264,48.56757060974434,48.56756875127537,48.56756727800997,48.5675660746918,48.56756511635432,48.567564336677606,48.56756371367633,48.567563208236045,48.567562803409054,48.56756247562829,48.567562212653165,48.567562000030186,48.56756182923975,48.56756169129098,48.56756158038785,48.56756149087546,48.567561418868415,48.56756136077998,48.567561314031096,48.56756127633245,48.56756124598357,48.56756122151644,48.56756120181509,48.56756118593495,48.56756117314588,48.56756116283881,48.56756115453706,48.56756114784702,48.56756114245818,48.56756113811586,48.567561134617875,48.56756113179936,48.56756112952881,48.56756112769931,48.567561126225506,48.567561125037976,48.56756112408135],\"marker\":{},\"line\":{},\"xaxis\":\"x\",\"yaxis\":\"y\"},{\"type\":\"scatter\",\"name\":\"Observed\",\"mode\":\"lines\",\"x\":[\"1845-01-01T00:00:00+00:00\",\"1846-01-01T00:00:00+00:00\",\"1847-01-01T00:00:00+00:00\",\"1848-01-01T00:00:00+00:00\",\"1849-01-01T00:00:00+00:00\",\"1850-01-01T00:00:00+00:00\",\"1851-01-01T00:00:00+00:00\",\"1852-01-01T00:00:00+00:00\",\"1853-01-01T00:00:00+00:00\",\"1854-01-01T00:00:00+00:00\",\"1855-01-01T00:00:00+00:00\",\"1856-01-01T00:00:00+00:00\",\"1857-01-01T00:00:00+00:00\",\"1858-01-01T00:00:00+00:00\",\"1859-01-01T00:00:00+00:00\",\"1860-01-01T00:00:00+00:00\",\"1861-01-01T00:00:00+00:00\",\"1862-01-01T00:00:00+00:00\",\"1863-01-01T00:00:00+00:00\",\"1864-01-01T00:00:00+00:00\",\"1865-01-01T00:00:00+00:00\",\"1866-01-01T00:00:00+00:00\",\"1867-01-01T00:00:00+00:00\",\"1868-01-01T00:00:00+00:00\",\"1869-01-01T00:00:00+00:00\",\"1870-01-01T00:00:00+00:00\",\"1871-01-01T00:00:00+00:00\",\"1872-01-01T00:00:00+00:00\",\"1873-01-01T00:00:00+00:00\",\"1874-01-01T00:00:00+00:00\",\"1875-01-01T00:00:00+00:00\",\"1876-01-01T00:00:00+00:00\",\"1877-01-01T00:00:00+00:00\",\"1878-01-01T00:00:00+00:00\",\"1879-01-01T00:00:00+00:00\",\"1880-01-01T00:00:00+00:00\",\"1881-01-01T00:00:00+00:00\",\"1882-01-01T00:00:00+00:00\",\"1883-01-01T00:00:00+00:00\",\"1884-01-01T00:00:00+00:00\",\"1885-01-01T00:00:00+00:00\",\"1886-01-01T00:00:00+00:00\",\"1887-01-01T00:00:00+00:00\",\"1888-01-01T00:00:00+00:00\",\"1889-01-01T00:00:00+00:00\",\"1890-01-01T00:00:00+00:00\",\"1891-01-01T00:00:00+00:00\",\"1892-01-01T00:00:00+00:00\",\"1893-01-01T00:00:00+00:00\",\"1894-01-01T00:00:00+00:00\",\"1895-01-01T00:00:00+00:00\",\"1896-01-01T00:00:00+00:00\",\"1897-01-01T00:00:00+00:00\",\"1898-01-01T00:00:00+00:00\",\"1899-01-01T00:00:00+00:00\",\"1900-01-01T00:00:00+00:00\",\"1901-01-01T00:00:00+00:00\",\"1902-01-01T00:00:00+00:00\",\"1903-01-01T00:00:00+00:00\",\"1904-01-01T00:00:00+00:00\",\"1905-01-01T00:00:00+00:00\",\"1906-01-01T00:00:00+00:00\",\"1907-01-01T00:00:00+00:00\",\"1908-01-01T00:00:00+00:00\",\"1909-01-01T00:00:00+00:00\",\"1910-01-01T00:00:00+00:00\",\"1911-01-01T00:00:00+00:00\",\"1912-01-01T00:00:00+00:00\",\"1913-01-01T00:00:00+00:00\",\"1914-01-01T00:00:00+00:00\",\"1915-01-01T00:00:00+00:00\",\"1916-01-01T00:00:00+00:00\",\"1917-01-01T00:00:00+00:00\",\"1918-01-01T00:00:00+00:00\",\"1919-01-01T00:00:00+00:00\",\"1920-01-01T00:00:00+00:00\",\"1921-01-01T00:00:00+00:00\",\"1922-01-01T00:00:00+00:00\",\"1923-01-01T00:00:00+00:00\",\"1924-01-01T00:00:00+00:00\",\"1925-01-01T00:00:00+00:00\",\"1926-01-01T00:00:00+00:00\",\"1927-01-01T00:00:00+00:00\",\"1928-01-01T00:00:00+00:00\",\"1929-01-01T00:00:00+00:00\",\"1930-01-01T00:00:00+00:00\",\"1931-01-01T00:00:00+00:00\",\"1932-01-01T00:00:00+00:00\",\"1933-01-01T00:00:00+00:00\",\"1934-01-01T00:00:00+00:00\",\"1935-01-01T00:00:00+00:00\"],\"y\":[19.58,19.6,19.61,11.99,28.04,58.0,74.6,75.09,88.48,61.28,74.67,88.06,68.51,32.19,12.64,21.49,30.35,2.18,152.65,148.36,85.81,41.41,14.75,2.28,5.91,9.95,10.44,70.64,50.12,50.13,101.25,97.12,86.51,72.17,38.32,10.11,7.74,9.67,43.12,52.21,134.85,134.86,103.79,46.1,15.03,24.2,41.65,52.34,53.78,70.4,85.81,56.69,16.59,6.16,2.3,12.82,4.72,4.73,37.22,69.72,57.78,28.68,23.37,21.54,26.34,53.1,68.48,75.58,57.92,40.97,24.95,12.59,4.97,4.5,11.21,56.6,69.63,77.74,80.53,73.38,36.93,4.64,2.54,1.8,2.39,4.23,19.52,82.11,89.76,81.66,15.76],\"marker\":{},\"line\":{},\"xaxis\":\"x\",\"yaxis\":\"y\"},{\"type\":\"scatter\",\"name\":\"Modelled\",\"mode\":\"lines\",\"x\":[\"1845-01-01T00:00:00+00:00\",\"1846-01-01T00:00:00+00:00\",\"1847-01-01T00:00:00+00:00\",\"1848-01-01T00:00:00+00:00\",\"1849-01-01T00:00:00+00:00\",\"1850-01-01T00:00:00+00:00\",\"1851-01-01T00:00:00+00:00\",\"1852-01-01T00:00:00+00:00\",\"1853-01-01T00:00:00+00:00\",\"1854-01-01T00:00:00+00:00\",\"1855-01-01T00:00:00+00:00\",\"1856-01-01T00:00:00+00:00\",\"1857-01-01T00:00:00+00:00\",\"1858-01-01T00:00:00+00:00\",\"1859-01-01T00:00:00+00:00\",\"1860-01-01T00:00:00+00:00\",\"1861-01-01T00:00:00+00:00\",\"1862-01-01T00:00:00+00:00\",\"1863-01-01T00:00:00+00:00\",\"1864-01-01T00:00:00+00:00\",\"1865-01-01T00:00:00+00:00\",\"1866-01-01T00:00:00+00:00\",\"1867-01-01T00:00:00+00:00\",\"1868-01-01T00:00:00+00:00\",\"1869-01-01T00:00:00+00:00\",\"1870-01-01T00:00:00+00:00\",\"1871-01-01T00:00:00+00:00\",\"1872-01-01T00:00:00+00:00\",\"1873-01-01T00:00:00+00:00\",\"1874-01-01T00:00:00+00:00\",\"1875-01-01T00:00:00+00:00\",\"1876-01-01T00:00:00+00:00\",\"1877-01-01T00:00:00+00:00\",\"1878-01-01T00:00:00+00:00\",\"1879-01-01T00:00:00+00:00\",\"1880-01-01T00:00:00+00:00\",\"1881-01-01T00:00:00+00:00\",\"1882-01-01T00:00:00+00:00\",\"1883-01-01T00:00:00+00:00\",\"1884-01-01T00:00:00+00:00\",\"1885-01-01T00:00:00+00:00\",\"1886-01-01T00:00:00+00:00\",\"1887-01-01T00:00:00+00:00\",\"1888-01-01T00:00:00+00:00\",\"1889-01-01T00:00:00+00:00\",\"1890-01-01T00:00:00+00:00\",\"1891-01-01T00:00:00+00:00\",\"1892-01-01T00:00:00+00:00\",\"1893-01-01T00:00:00+00:00\",\"1894-01-01T00:00:00+00:00\",\"1895-01-01T00:00:00+00:00\",\"1896-01-01T00:00:00+00:00\",\"1897-01-01T00:00:00+00:00\",\"1898-01-01T00:00:00+00:00\",\"1899-01-01T00:00:00+00:00\",\"1900-01-01T00:00:00+00:00\",\"1901-01-01T00:00:00+00:00\",\"1902-01-01T00:00:00+00:00\",\"1903-01-01T00:00:00+00:00\",\"1904-01-01T00:00:00+00:00\",\"1905-01-01T00:00:00+00:00\",\"1906-01-01T00:00:00+00:00\",\"1907-01-01T00:00:00+00:00\",\"1908-01-01T00:00:00+00:00\",\"1909-01-01T00:00:00+00:00\",\"1910-01-01T00:00:00+00:00\",\"1911-01-01T00:00:00+00:00\",\"1912-01-01T00:00:00+00:00\",\"1913-01-01T00:00:00+00:00\",\"1914-01-01T00:00:00+00:00\",\"1915-01-01T00:00:00+00:00\",\"1916-01-01T00:00:00+00:00\",\"1917-01-01T00:00:00+00:00\",\"1918-01-01T00:00:00+00:00\",\"1919-01-01T00:00:00+00:00\",\"1920-01-01T00:00:00+00:00\",\"1921-01-01T00:00:00+00:00\",\"1922-01-01T00:00:00+00:00\",\"1923-01-01T00:00:00+00:00\",\"1924-01-01T00:00:00+00:00\",\"1925-01-01T00:00:00+00:00\",\"1926-01-01T00:00:00+00:00\",\"1927-01-01T00:00:00+00:00\",\"1928-01-01T00:00:00+00:00\",\"1929-01-01T00:00:00+00:00\",\"1930-01-01T00:00:00+00:00\",\"1931-01-01T00:00:00+00:00\",\"1932-01-01T00:00:00+00:00\",\"1933-01-01T00:00:00+00:00\",\"1934-01-01T00:00:00+00:00\",\"1935-01-01T00:00:00+00:00\"],\"y\":[6.777390842455542,4.186350508812161,3.4179860478363864,3.506860999751655,4.510855680903218,7.255981932252858,13.770093009482181,22.941399750803114,21.816066322778777,22.699965067756757,22.270962236655215,22.65570078167274,22.48901677865016,22.667149945135296,22.603697996129487,22.690112130956805,22.667738139691863,22.711364969142277,22.705016859366623,22.72786184727826,22.727372468852757,22.739752772396503,22.74107166696288,22.74799912284716,22.749599884387628,22.753590560036795,22.754970580356325,22.757328842688217,22.758381372120958,22.759805300087944,22.760560757273492,22.761435756188206,22.76195949022441,22.762504691612747,22.76286007178192,22.763203438491615,22.763441251010793,22.763659261658916,22.7638169279607,22.76395618523733,22.76406005510165,22.76414940370595,22.76421753339861,22.764275046447473,22.764319597141874,22.764356705092297,22.764385774684897,22.764409757795104,22.764428697120177,22.764444216527806,22.764456542565554,22.764466593954527,22.764474609837777,22.764481123875953,22.76448633395026,22.76449055742725,22.764493942507446,22.764496681746053,22.764498880490333,22.764500657499166,22.76450208539155,22.764503238368786,22.76450416553081,22.764504913705295,22.764505515672116,22.76450600120815,22.764506392011857,22.76450670712467,22.764506960826044,22.764507165342938,22.76450733003445,22.76450746277559,22.764507569683172,22.764507655840344,22.764507725236875,22.764507781159043,22.764507826205552,22.764507862503443,22.7645078917437,22.764507915304034,22.764507934284094,22.76450794957685,22.76450796189689,22.764507971823242,22.764507979820227,22.764507986263332,22.764507991454156,22.764507995636368,22.76450799900572,22.76450800172038,22.7645080039074],\"marker\":{},\"line\":{},\"xaxis\":\"x2\",\"yaxis\":\"y2\"},{\"type\":\"scatter\",\"name\":\"Observed\",\"mode\":\"lines\",\"x\":[\"1845-01-01T00:00:00+00:00\",\"1846-01-01T00:00:00+00:00\",\"1847-01-01T00:00:00+00:00\",\"1848-01-01T00:00:00+00:00\",\"1849-01-01T00:00:00+00:00\",\"1850-01-01T00:00:00+00:00\",\"1851-01-01T00:00:00+00:00\",\"1852-01-01T00:00:00+00:00\",\"1853-01-01T00:00:00+00:00\",\"1854-01-01T00:00:00+00:00\",\"1855-01-01T00:00:00+00:00\",\"1856-01-01T00:00:00+00:00\",\"1857-01-01T00:00:00+00:00\",\"1858-01-01T00:00:00+00:00\",\"1859-01-01T00:00:00+00:00\",\"1860-01-01T00:00:00+00:00\",\"1861-01-01T00:00:00+00:00\",\"1862-01-01T00:00:00+00:00\",\"1863-01-01T00:00:00+00:00\",\"1864-01-01T00:00:00+00:00\",\"1865-01-01T00:00:00+00:00\",\"1866-01-01T00:00:00+00:00\",\"1867-01-01T00:00:00+00:00\",\"1868-01-01T00:00:00+00:00\",\"1869-01-01T00:00:00+00:00\",\"1870-01-01T00:00:00+00:00\",\"1871-01-01T00:00:00+00:00\",\"1872-01-01T00:00:00+00:00\",\"1873-01-01T00:00:00+00:00\",\"1874-01-01T00:00:00+00:00\",\"1875-01-01T00:00:00+00:00\",\"1876-01-01T00:00:00+00:00\",\"1877-01-01T00:00:00+00:00\",\"1878-01-01T00:00:00+00:00\",\"1879-01-01T00:00:00+00:00\",\"1880-01-01T00:00:00+00:00\",\"1881-01-01T00:00:00+00:00\",\"1882-01-01T00:00:00+00:00\",\"1883-01-01T00:00:00+00:00\",\"1884-01-01T00:00:00+00:00\",\"1885-01-01T00:00:00+00:00\",\"1886-01-01T00:00:00+00:00\",\"1887-01-01T00:00:00+00:00\",\"1888-01-01T00:00:00+00:00\",\"1889-01-01T00:00:00+00:00\",\"1890-01-01T00:00:00+00:00\",\"1891-01-01T00:00:00+00:00\",\"1892-01-01T00:00:00+00:00\",\"1893-01-01T00:00:00+00:00\",\"1894-01-01T00:00:00+00:00\",\"1895-01-01T00:00:00+00:00\",\"1896-01-01T00:00:00+00:00\",\"1897-01-01T00:00:00+00:00\",\"1898-01-01T00:00:00+00:00\",\"1899-01-01T00:00:00+00:00\",\"1900-01-01T00:00:00+00:00\",\"1901-01-01T00:00:00+00:00\",\"1902-01-01T00:00:00+00:00\",\"1903-01-01T00:00:00+00:00\",\"1904-01-01T00:00:00+00:00\",\"1905-01-01T00:00:00+00:00\",\"1906-01-01T00:00:00+00:00\",\"1907-01-01T00:00:00+00:00\",\"1908-01-01T00:00:00+00:00\",\"1909-01-01T00:00:00+00:00\",\"1910-01-01T00:00:00+00:00\",\"1911-01-01T00:00:00+00:00\",\"1912-01-01T00:00:00+00:00\",\"1913-01-01T00:00:00+00:00\",\"1914-01-01T00:00:00+00:00\",\"1915-01-01T00:00:00+00:00\",\"1916-01-01T00:00:00+00:00\",\"1917-01-01T00:00:00+00:00\",\"1918-01-01T00:00:00+00:00\",\"1919-01-01T00:00:00+00:00\",\"1920-01-01T00:00:00+00:00\",\"1921-01-01T00:00:00+00:00\",\"1922-01-01T00:00:00+00:00\",\"1923-01-01T00:00:00+00:00\",\"1924-01-01T00:00:00+00:00\",\"1925-01-01T00:00:00+00:00\",\"1926-01-01T00:00:00+00:00\",\"1927-01-01T00:00:00+00:00\",\"1928-01-01T00:00:00+00:00\",\"1929-01-01T00:00:00+00:00\",\"1930-01-01T00:00:00+00:00\",\"1931-01-01T00:00:00+00:00\",\"1932-01-01T00:00:00+00:00\",\"1933-01-01T00:00:00+00:00\",\"1934-01-01T00:00:00+00:00\",\"1935-01-01T00:00:00+00:00\"],\"y\":[30.09,45.15,49.15,39.52,21.23,8.42,5.56,5.08,10.17,19.6,32.91,34.38,29.59,21.3,13.69,7.65,4.08,4.09,14.33,38.22,60.78,70.77,72.77,42.68,16.39,9.83,5.8,5.26,18.91,30.95,31.18,46.34,45.77,44.15,36.33,12.03,12.6,18.34,35.14,43.77,65.69,79.35,51.65,32.59,22.45,16.16,14.12,20.38,33.33,46.0,51.41,46.43,33.68,18.01,8.86,7.13,9.47,14.86,31.47,60.57,63.51,54.7,6.3,3.41,5.44,11.65,20.35,32.88,39.55,43.36,40.83,30.36,17.18,6.82,3.19,3.52,9.94,20.3,31.99,42.36,49.08,53.99,52.25,37.7,19.14,6.98,8.31,16.01,24.82,29.7,35.4],\"marker\":{},\"line\":{},\"xaxis\":\"x2\",\"yaxis\":\"y2\"}];\n", + " var layout = {\"width\":600,\"height\":600,\"template\":{\"layout\":{\"title\":{\"x\":0.05},\"font\":{\"color\":\"rgba(42, 63, 95, 1.0)\"},\"paper_bgcolor\":\"rgba(255, 255, 255, 1.0)\",\"plot_bgcolor\":\"rgba(229, 236, 246, 1.0)\",\"autotypenumbers\":\"strict\",\"colorscale\":{\"diverging\":[[0.0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1.0,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}},\"geo\":{\"showland\":true,\"landcolor\":\"rgba(229, 236, 246, 1.0)\",\"showlakes\":true,\"lakecolor\":\"rgba(255, 255, 255, 1.0)\",\"subunitcolor\":\"rgba(255, 255, 255, 1.0)\",\"bgcolor\":\"rgba(255, 255, 255, 1.0)\"},\"mapbox\":{\"style\":\"light\"},\"polar\":{\"bgcolor\":\"rgba(229, 236, 246, 1.0)\",\"radialaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"ticks\":\"\"},\"angularaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true},\"yaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true},\"zaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true}},\"ternary\":{\"aaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"baxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"caxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"bgcolor\":\"rgba(229, 236, 246, 1.0)\"},\"xaxis\":{\"title\":{\"standoff\":15},\"ticks\":\"\",\"automargin\":\"height+width+left+right+top+bottom\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinewidth\":2.0},\"yaxis\":{\"title\":{\"standoff\":15},\"ticks\":\"\",\"automargin\":\"height+width+left+right+top+bottom\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinewidth\":2.0},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"shapedefaults\":{\"line\":{\"color\":\"rgba(42, 63, 95, 1.0)\"}},\"colorway\":[\"rgba(99, 110, 250, 1.0)\",\"rgba(239, 85, 59, 1.0)\",\"rgba(0, 204, 150, 1.0)\",\"rgba(171, 99, 250, 1.0)\",\"rgba(255, 161, 90, 1.0)\",\"rgba(25, 211, 243, 1.0)\",\"rgba(255, 102, 146, 1.0)\",\"rgba(182, 232, 128, 1.0)\",\"rgba(255, 151, 255, 1.0)\",\"rgba(254, 203, 82, 1.0)\"]},\"data\":{\"bar\":[{\"marker\":{\"line\":{\"color\":\"rgba(229, 236, 246, 1.0)\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"error_x\":{\"color\":\"rgba(42, 63, 95, 1.0)\"},\"error_y\":{\"color\":\"rgba(42, 63, 95, 1.0)\"}}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"rgba(229, 236, 246, 1.0)\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}}}],\"carpet\":[{\"aaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"endlinecolor\":\"rgba(42, 63, 95, 1.0)\",\"minorgridcolor\":\"rgba(255, 255, 255, 1.0)\",\"startlinecolor\":\"rgba(42, 63, 95, 1.0)\"},\"baxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"endlinecolor\":\"rgba(42, 63, 95, 1.0)\",\"minorgridcolor\":\"rgba(255, 255, 255, 1.0)\",\"startlinecolor\":\"rgba(42, 63, 95, 1.0)\"}}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}}}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"pie\":[{\"automargin\":true}],\"scatter\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}},\"line\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgba(235, 240, 248, 1.0)\"},\"line\":{\"color\":\"rgba(255, 255, 255, 1.0)\"}},\"header\":{\"fill\":{\"color\":\"rgba(200, 212, 227, 1.0)\"},\"line\":{\"color\":\"rgba(255, 255, 255, 1.0)\"}}}]}},\"title\":{\"text\":\"lynx\"},\"xaxis\":{},\"yaxis\":{},\"xaxis2\":{},\"yaxis2\":{},\"grid\":{\"rows\":2,\"columns\":1,\"pattern\":\"independent\"}};\n", + " var config = {\"responsive\":true};\n", + " Plotly.newPlot(\u0027a2bfd5fd-dc86-46c7-813d-e4b198c22392\u0027, data, layout, config);\n", + "};\n", + "renderPlotly_a2bfd5fddc8646c7813de4b198c22392();\n", + "\u003c/script\u003e\u003c/div\u003e\n", + "\n", + "**NB: this documentation is auto-generated so we cannot comment directly on the randomly generated scenario.**\n", + "\n", + "Next, we can examine the traces to see how parameter values evolved over the course of\n", + "the optimisation routine:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 14, "outputs": [ + { + "data": { + "text/html": ["\u003cdiv\u003e\u003cdiv id=\"428db62e-8ab9-4c95-ba38-b1126eeca0ca\"\u003e\u003c!-- Plotly chart will be drawn inside this DIV --\u003e\u003c/div\u003e\u003cscript type=\"text/javascript\"\u003evar renderPlotly_428db62e8ab94c95ba38b1126eeca0ca = function() {", +" var data = [{\"type\":\"scatter\",\"mode\":\"lines\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\"y\":[-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,0.048185169709992835,0.048185169709992835,0.048185169709992835,0.048185169709992835,0.048185169709992835,0.048185169709992835],\"marker\":{},\"line\":{},\"xaxis\":\"x\",\"yaxis\":\"y\"},{\"type\":\"scatter\",\"mode\":\"lines\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\"y\":[0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,0.36256282338853707,0.36256282338853707,0.36256282338853707,0.36256282338853707,0.36256282338853707,0.36256282338853707],\"marker\":{},\"line\":{},\"xaxis\":\"x2\",\"yaxis\":\"y2\"},{\"type\":\"scatter\",\"mode\":\"lines\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\"y\":[-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,0.05788216110489436,0.05788216110489436,0.05788216110489436,0.05788216110489436,0.05788216110489436,0.05788216110489436],\"marker\":{},\"line\":{},\"xaxis\":\"x3\",\"yaxis\":\"y3\"},{\"type\":\"scatter\",\"mode\":\"lines\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\"y\":[0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.16118572435378603,0.16118572435378603,0.16118572435378603,0.16118572435378603,0.16118572435378603,0.16118572435378603],\"marker\":{},\"line\":{},\"xaxis\":\"x4\",\"yaxis\":\"y4\"},{\"type\":\"scatter\",\"mode\":\"lines\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\"y\":[-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,0.0850941789518054,0.0850941789518054,0.0850941789518054,0.0850941789518054,0.0850941789518054,0.0850941789518054],\"marker\":{},\"line\":{},\"xaxis\":\"x5\",\"yaxis\":\"y5\"},{\"type\":\"scatter\",\"mode\":\"lines\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\"y\":[0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.06836492227981739,0.06836492227981739,0.06836492227981739,0.06836492227981739,0.06836492227981739,0.06836492227981739],\"marker\":{},\"line\":{},\"xaxis\":\"x6\",\"yaxis\":\"y6\"},{\"type\":\"scatter\",\"mode\":\"lines\",\"x\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\"y\":[0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.05114572250841975,0.05114572250841975,0.05114572250841975,0.05114572250841975,0.05114572250841975,0.05114572250841975],\"marker\":{},\"line\":{},\"xaxis\":\"x7\",\"yaxis\":\"y7\"}];", +" var layout = {\"width\":600,\"height\":600,\"template\":{\"layout\":{\"title\":{\"x\":0.05},\"font\":{\"color\":\"rgba(42, 63, 95, 1.0)\"},\"paper_bgcolor\":\"rgba(255, 255, 255, 1.0)\",\"plot_bgcolor\":\"rgba(229, 236, 246, 1.0)\",\"autotypenumbers\":\"strict\",\"colorscale\":{\"diverging\":[[0.0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1.0,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}},\"geo\":{\"showland\":true,\"landcolor\":\"rgba(229, 236, 246, 1.0)\",\"showlakes\":true,\"lakecolor\":\"rgba(255, 255, 255, 1.0)\",\"subunitcolor\":\"rgba(255, 255, 255, 1.0)\",\"bgcolor\":\"rgba(255, 255, 255, 1.0)\"},\"mapbox\":{\"style\":\"light\"},\"polar\":{\"bgcolor\":\"rgba(229, 236, 246, 1.0)\",\"radialaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"ticks\":\"\"},\"angularaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true},\"yaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true},\"zaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"gridwidth\":2.0,\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"backgroundcolor\":\"rgba(229, 236, 246, 1.0)\",\"showbackground\":true}},\"ternary\":{\"aaxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"baxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"caxis\":{\"ticks\":\"\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\"},\"bgcolor\":\"rgba(229, 236, 246, 1.0)\"},\"xaxis\":{\"title\":{\"standoff\":15},\"ticks\":\"\",\"automargin\":\"height+width+left+right+top+bottom\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinewidth\":2.0},\"yaxis\":{\"title\":{\"standoff\":15},\"ticks\":\"\",\"automargin\":\"height+width+left+right+top+bottom\",\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinecolor\":\"rgba(255, 255, 255, 1.0)\",\"zerolinewidth\":2.0},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"shapedefaults\":{\"line\":{\"color\":\"rgba(42, 63, 95, 1.0)\"}},\"colorway\":[\"rgba(99, 110, 250, 1.0)\",\"rgba(239, 85, 59, 1.0)\",\"rgba(0, 204, 150, 1.0)\",\"rgba(171, 99, 250, 1.0)\",\"rgba(255, 161, 90, 1.0)\",\"rgba(25, 211, 243, 1.0)\",\"rgba(255, 102, 146, 1.0)\",\"rgba(182, 232, 128, 1.0)\",\"rgba(255, 151, 255, 1.0)\",\"rgba(254, 203, 82, 1.0)\"]},\"data\":{\"bar\":[{\"marker\":{\"line\":{\"color\":\"rgba(229, 236, 246, 1.0)\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"error_x\":{\"color\":\"rgba(42, 63, 95, 1.0)\"},\"error_y\":{\"color\":\"rgba(42, 63, 95, 1.0)\"}}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"rgba(229, 236, 246, 1.0)\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}}}],\"carpet\":[{\"aaxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"endlinecolor\":\"rgba(42, 63, 95, 1.0)\",\"minorgridcolor\":\"rgba(255, 255, 255, 1.0)\",\"startlinecolor\":\"rgba(42, 63, 95, 1.0)\"},\"baxis\":{\"linecolor\":\"rgba(255, 255, 255, 1.0)\",\"gridcolor\":\"rgba(255, 255, 255, 1.0)\",\"endlinecolor\":\"rgba(42, 63, 95, 1.0)\",\"minorgridcolor\":\"rgba(255, 255, 255, 1.0)\",\"startlinecolor\":\"rgba(42, 63, 95, 1.0)\"}}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}}}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"pie\":[{\"automargin\":true}],\"scatter\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}},\"line\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"}}}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0.0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgba(235, 240, 248, 1.0)\"},\"line\":{\"color\":\"rgba(255, 255, 255, 1.0)\"}},\"header\":{\"fill\":{\"color\":\"rgba(200, 212, 227, 1.0)\"},\"line\":{\"color\":\"rgba(255, 255, 255, 1.0)\"}}}]}},\"xaxis\":{},\"yaxis\":{},\"xaxis2\":{},\"yaxis2\":{},\"xaxis3\":{},\"yaxis3\":{},\"xaxis4\":{},\"yaxis4\":{},\"xaxis5\":{},\"yaxis5\":{},\"xaxis6\":{},\"yaxis6\":{},\"xaxis7\":{},\"yaxis7\":{},\"grid\":{\"rows\":3,\"columns\":3,\"pattern\":\"independent\"}};", +" var config = {\"responsive\":true};", +" Plotly.newPlot(\u0027428db62e-8ab9-4c95-ba38-b1126eeca0ca\u0027, data, layout, config);", +"};", +"renderPlotly_428db62e8ab94c95ba38b1126eeca0ca();", +"\u003c/script\u003e\u003c/div\u003e"] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + }], + "source": [ + "Graphing.parameterTrace result\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/examples/shrub-resource.fsx b/examples/shrub-resource.fsx new file mode 100644 index 0000000..32f334a --- /dev/null +++ b/examples/shrub-resource.fsx @@ -0,0 +1,5 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" + diff --git a/examples/shrub-resource.html b/examples/shrub-resource.html new file mode 100644 index 0000000..d16be0e --- /dev/null +++ b/examples/shrub-resource.html @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + Shrub response to a single limiting resource | bristlecone + + + + + + + + + + + + +
          + +
          + + + + + +
          +
          + +
          +
          + + +
          Multiple items
          module Bristlecone + +from Bristlecone

          --------------------
          namespace Bristlecone
          +
          module Language + +from Bristlecone
          <summary> + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +</summary>
          +
          module Time + +from Bristlecone
          + +
          +
          + + + +
          +
            +

            Type something to start searching.

            +
            +
            + + + + + + + \ No newline at end of file diff --git a/examples/shrub-resource.ipynb b/examples/shrub-resource.ipynb new file mode 100644 index 0000000..198f907 --- /dev/null +++ b/examples/shrub-resource.ipynb @@ -0,0 +1,515 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n", + "\n", + "////////////////////////////////////////////////////\n", + "// Plant nitrogen limitation using wood rings\n", + "// and nitrogen isotopes\n", + "////////////////////////////////////////////////////\n", + "\n", + "(* An example Bristlecone script for working with\n", + " wood ring datasets. *)\n", + "\n", + "open Bristlecone // Opens Bristlecone core library and estimation engine\n", + "open Bristlecone.Language // Open the language for writing Bristlecone models\n", + "open Bristlecone.Time\n", + "\n", + "// // 1. Define basic model system\n", + "// // ----------------------------\n", + "// // First, we define a \u0027base model\u0027 into which we can insert\n", + "// // components that represent different hypotheses.\n", + "\n", + "// let baseModel =\n", + " \n", + "// /// Transform δ15N to N availability.\n", + "// let ``δ15N -\u003e N availability`` =\n", + "// (Constant 100. * Environment \"N\" + Constant 309.) / Constant 359.\n", + " \n", + "// /// Plant uptake of N from soil, which may be turned on or off\n", + "// let uptake f geom =\n", + "// (geom This) * This * (f ``δ15N -\u003e N availability``)\n", + "\n", + "// /// 1. Cumulative stem biomass\n", + "// let ``db/dt`` geom nLimitation =\n", + "// Parameter \"r\" * (uptake nLimitation geom) - Parameter \"γ[b]\" * This\n", + "\n", + "// /// 2. Soil nitrogen availability\n", + "// let ``dN/dt`` geom feedback limitationName nLimitation = \n", + "// if limitationName = \"None\"\n", + "// then Parameter \"λ\" - Parameter \"γ[N]\" * ``δ15N -\u003e N availability`` + feedback This\n", + "// else\n", + "// Parameter \"λ\" - Parameter \"γ[N]\" * ``δ15N -\u003e N availability``\n", + "// + feedback This\n", + "// - (geom This) * This * (nLimitation ``δ15N -\u003e N availability``)\n", + "\n", + "// /// 3. Stem radius (a \u0027Measurement\u0027 variable)\n", + "// let stemRadius lastRadius lastEnv env =\n", + "// let oldCumulativeMass = lastEnv |\u003e lookup \"bs\"\n", + "// let newCumulativeMass = env |\u003e lookup \"bs\"\n", + "// if (newCumulativeMass - oldCumulativeMass) \u003e 0.\n", + "// then newCumulativeMass |\u003e Allometric.Proxies.toRadiusMM\n", + "// else lastRadius\n", + "\n", + "// fun geom feedback (nLimitMode,nLimitation) -\u003e\n", + "// Model.empty\n", + "// |\u003e Model.addEquation \"bs\" (``db/dt`` geom nLimitation)\n", + "// |\u003e Model.addEquation \"N\" (``dN/dt`` geom feedback nLimitMode nLimitation)\n", + "// |\u003e Model.includeMeasure \"x\" stemRadius\n", + "// |\u003e Model.estimateParameter \"λ\" notNegative 0.001 0.500\n", + "// |\u003e Model.estimateParameter \"γ[N]\" notNegative 0.001 0.200\n", + "// |\u003e Model.estimateParameter \"γ[b]\" notNegative 0.001 0.200\n", + "// |\u003e Model.useLikelihoodFunction (ModelLibrary.Likelihood.bivariateGaussian \"x\" \"N\")\n", + "// |\u003e Model.estimateParameter \"ρ\" noConstraints -0.500 0.500\n", + "// |\u003e Model.estimateParameter \"σ[x]\" notNegative 0.001 0.100\n", + "// |\u003e Model.estimateParameter \"σ[y]\" notNegative 0.001 0.100\n", + "\n", + "\n", + "// // 2. Define competing hypotheses\n", + "// // ----------------------------\n", + "// /// Define 12 alternative hypotheses by defining three interchangeable components:\n", + "// /// - Asymptotic plant size (2 types);\n", + "// /// - Plant-soil feedback presence / absence (2 types); and\n", + "// /// - Nitrogen limitation form (3 types).\n", + "// /// The product of each of the three components with the base model forms 12\n", + "// /// alternative hypotheses, each represented as a `ModelSystem`.\n", + "// let hypotheses =\n", + " \n", + "// // 1. Setup two alternatives for geometric mode.\n", + "// let chapmanRichards mass = Constant 1. - (mass / (Parameter \"k\" * Constant 1000.))\n", + "// let geometricModes = modelComponent \"Geometric constraint\" [\n", + "// subComponent \"None\" (Constant 1. |\u003e (*))\n", + "// subComponent \"Chapman-Richards\" chapmanRichards\n", + "// |\u003e estimateParameter \"k\" notNegative 3.00 5.00 // Asymptotic biomass (in kilograms)\n", + "// ]\n", + "\n", + "// // 2. Setup two alternatives for plant-soil feedbacks.\n", + "// let biomassLoss biomass = (Parameter \"ɑ\" / Constant 100.) * biomass * Parameter \"γ[b]\"\n", + "// let feedbackModes = modelComponent \"Plant-Soil Feedback\" [\n", + "// subComponent \"None\" (Constant 1. |\u003e (*))\n", + "// subComponent \"Biomass Loss\" biomassLoss\n", + "// |\u003e estimateParameter \"ɑ\" notNegative 0.01 1.00 // N-recycling efficiency\n", + "// ]\n", + "\n", + "// // 3. Setup three alternatives for the form of plant N limitation.\n", + "\n", + "// let saturating minimumNutrient nutrient =\n", + "// let hollingModel n = (Parameter \"a\" * n) / (Constant 1. + (Parameter \"a\" * Parameter \"b\" * Parameter \"h\" * n))\n", + "// Conditional(fun compute -\u003e\n", + "// if compute (hollingModel minimumNutrient) \u003c 1e-12\n", + "// then Invalid\n", + "// else hollingModel nutrient )\n", + " \n", + "// let linear min resource =\n", + "// Conditional(fun compute -\u003e\n", + "// if compute (Parameter \"a\" * min) \u003c 1e-12 then Invalid else Parameter \"a\" * resource)\n", + "\n", + "// let limitationModes = modelComponent \"N-limitation\" [\n", + "// subComponent \"Saturating\" (saturating (Constant 5.))\n", + "// |\u003e estimateParameter \"a\" notNegative 0.100 0.400\n", + "// |\u003e estimateParameter \"h\" notNegative 0.100 0.400\n", + "// |\u003e estimateParameter \"r\" notNegative 0.500 1.000\n", + "// subComponent \"Linear\" (linear (Constant 5.))\n", + "// |\u003e estimateParameter \"a\" notNegative 0.100 0.400\n", + "// |\u003e estimateParameter \"r\" notNegative 0.500 1.000\n", + "// subComponent \"None\" (Constant 1. |\u003e (*))\n", + "// |\u003e estimateParameter \"r\" notNegative 0.500 1.000\n", + "// ]\n", + "\n", + "// baseModel\n", + "// |\u003e Hypotheses.createFromComponent geometricModes\n", + "// |\u003e Hypotheses.useAnother feedbackModes\n", + "// |\u003e Hypotheses.useAnotherWithName limitationModes\n", + "// |\u003e Hypotheses.compile\n", + "\n", + "\n", + "// // 3. Setup Bristlecone Engine\n", + "// // ----------------------------\n", + "// // A bristlecone engine provides a fixed setup for estimating parameters from data.\n", + "// // Use the same engine for all model fits within a single study.\n", + "\n", + "// let engine = \n", + "// Bristlecone.mkContinuous\n", + "// |\u003e Bristlecone.withContinuousTime Integration.MathNet.integrate\n", + "// |\u003e Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint\n", + "// |\u003e Bristlecone.withTunedMCMC [ Optimisation.MonteCarlo.TuneMethod.CovarianceWithScale 0.200, 250, Optimisation.EndConditions.afterIteration 20000 ]\n", + "\n", + "\n", + "// // 4. Test Engine and Model\n", + "// // ----------------------------\n", + "// // Running a full test is strongly recommended. The test will demonstrate if the current\n", + "// // configuration can find known parameters for a model. If this step fails, there is an\n", + "// // issue with either your model, or the Bristlecone configuration.\n", + "\n", + "// let testSettings =\n", + "// Test.create\n", + "// |\u003e Test.addNoise (Test.Noise.tryAddNormal \"sigma[y]\" \"N\")\n", + "// |\u003e Test.addNoise (Test.Noise.tryAddNormal \"sigma[x]\" \"bs\")\n", + "// |\u003e Test.addGenerationRules [ \n", + "// Test.GenerationRules.alwaysMoreThan -3. \"N\"\n", + "// Test.GenerationRules.alwaysLessThan 20. \"N\"\n", + "// Test.GenerationRules.alwaysMoreThan 0. \"bs\"\n", + "// Test.GenerationRules.monotonicallyIncreasing \"x\" ] // There must be at least 10mm of wood production\n", + "// |\u003e Test.addStartValues [\n", + "// \"x\", 5.0\n", + "// \"bs\", 5.0 |\u003e Allometric.Proxies.toBiomassMM\n", + "// \"N\", 3.64 ]\n", + "// |\u003e Test.withTimeSeriesLength 30\n", + "// |\u003e Test.endWhen (Optimisation.EndConditions.afterIteration 1000)\n", + "\n", + "// let testResult =\n", + "// hypotheses \n", + "// |\u003e List.map(fst \u003e\u003e Bristlecone.testModel engine testSettings)\n", + "\n", + "\n", + "// // 5. Load Real Data\n", + "// // ----------------------------\n", + "// // Here, we are using the Bristlecone.Dendro package to \n", + "// // read in dendroecological data.\n", + "\n", + "// open Bristlecone.Dendro\n", + "\n", + "// let shrubData =\n", + "// let plants = Data.PlantIndividual.loadRingWidths (__SOURCE_DIRECTORY__ + \"/../data/yamal-rw.csv\")\n", + "// let isotopeData = Data.PlantIndividual.loadLocalEnvironmentVariable (__SOURCE_DIRECTORY__ + \"/../data/yuribei-d15N-imputed.csv\")\n", + "// plants |\u003e PlantIndividual.zipEnvMany \"N\" isotopeData\n", + "\n", + "\n", + "// // 6. Fit Models to Real Data\n", + "// // -----------------------------------\n", + "\n", + "\n", + "\n", + "// // 7. Calculate model comparison statistics\n", + "// // -----------------------------------\n", + " \n", + " \n", + "// // 3. Load Real Data and Estimate\n", + "// // ----------------------------\n", + "\n", + "// // Define the start values for a model system, as follows:\n", + "// // initial radius = \n", + "// let startValues (startDate:System.DateTime) (plant:PlantIndividual.PlantIndividual) =\n", + "// let initialRadius =\n", + "// match plant.Growth with\n", + "// | PlantIndividual.PlantGrowth.RingWidth s -\u003e \n", + "// match s with\n", + "// | GrowthSeries.Absolute c -\u003e c.Head |\u003e fst\n", + "// | _ -\u003e invalidOp \"Not applicable\"\n", + "// | _ -\u003e invalidOp \"Not applicable\"\n", + "// let initialMass = initialRadius |\u003e ModelComponents.Proxies.toBiomassMM\n", + "// let initialNitrogen = plant.Environment.[code \"N\"].Head |\u003e fst\n", + "// [ (\"x\", initialRadius)\n", + "// (\"N\", initialNitrogen)\n", + "// (\"bs\", initialMass) ] |\u003e Map.ofList\n", + "\n", + "// let workPackages shrubs hypotheses engine saveDirectory =\n", + "// seq {\n", + "// for s in shrubs do\n", + "\n", + "// // 1. Arrange the subject and settings\n", + "// let shrub = s |\u003e PlantIndividual.toCumulativeGrowth\n", + "// let common = shrub |\u003e PlantIndividual.keepCommonYears\n", + "// let startDate = (common.Environment.[\"N\"]).StartDate |\u003e snd\n", + "// let startConditions = getStartValues startDate shrub\n", + "// let e = engine |\u003e Bristlecone.withConditioning (Custom startConditions)\n", + "\n", + "// // 2. Setup batches of dependent analyses\n", + "// for h in [ 1 .. hypotheses |\u003e List.length ] do\n", + "// for _ in [ 1 .. Options.chains ] do\n", + "// if h = 1 || h = 2 || h = 7 || h = 8 || h = 9 || h = 10 then yield async {\n", + "// // A. Compute result\n", + "// let result = Bristlecone.PlantIndividual.fit e Options.endWhen hypotheses.[h-1] common |\u003e fst\n", + "// // B. Save to file\n", + "// Bristlecone.Data.EstimationResult.saveAll saveDirectory s.Identifier.Value h 1 result\n", + "// return result }\n", + "// }\n", + "\n", + "// // Orchestrate the analyses\n", + "// let work = workPackages shrubs hypotheses Options.engine Options.resultsDirectory\n", + "// let run() = work |\u003e Seq.iter (OrchestrationMessage.StartWorkPackage \u003e\u003e Options.orchestrator.Post)\n", + "\n", + "\n", + "// let saveDiagnostics () =\n", + "\n", + "// // 1. Get all results sliced by plant and hypothesis\n", + "// let results = \n", + "// let get subject model modelId = Bristlecone.Data.EstimationResult.loadAll Options.resultsDirectory subject.Identifier.Value model modelId\n", + "// Bristlecone.ModelSelection.ResultSet.arrangeResultSets shrubs hypotheses get\n", + "\n", + "// // 2. Save convergence statistics to file\n", + "// // NB include only results within 5 likelihood of the minimum (to remove outliers)\n", + "// results \n", + "// // |\u003e Seq.map(fun (x,a,b,c) -\u003e x.Identifier.Value,a,b,c)\n", + "// // |\u003e Seq.toList\n", + "// |\u003e Diagnostics.Convergence.gelmanRubinAll 10000\n", + "// |\u003e Data.Convergence.save Options.resultsDirectory\n", + "\n", + "// // 3. Save Akaike weights to file\n", + "// results\n", + "// |\u003e ModelSelection.Select.weights\n", + "// |\u003e Seq.map(fun (x,a,b,c) -\u003e x.Identifier.Value,a,b,c)\n", + "// |\u003e Data.ModelSelection.save Options.resultsDirectory\n", + "\n", + "// // 4. Save out logged components\n", + "// // results\n", + "// // |\u003e Seq.map(fun r -\u003e calculateComponents fit Options.engine r)\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "// // What about one-step-ahead predictions?\n", + "\n", + "// open Bristlecone.Diagnostics.ModelComponents\n", + "// open FSharp.Data\n", + "\n", + "// // 1. Load in all MLE results and pick the best for each shrub x hypothesis.\n", + "// // - Must convert from old bristlecone format to new one.\n", + "\n", + "// module LoadOldTrace =\n", + "\n", + "// open Bristlecone.Data.Trace\n", + "// open Bristlecone.Data.Config\n", + "\n", + "// type OldTrace = CsvProvider\u003c\"/Users/andrewmartin/Desktop/Bristlecone Results/Paper1-Yuribei-Annual/dphil-shrub-output-YUSL03A-1-92aadb09-f035-4373-aacd-a16ed7dec822.csv\"\u003e\n", + "\n", + "// let fileMatch directory subject modelId =\n", + "// let path = System.IO.DirectoryInfo(directory)\n", + "// if path.Exists then\n", + "// let files = path.GetFiles(sprintf \"dphil-shrub-output-%s-%i-*.csv\" subject modelId)\n", + "// let regex = sprintf \"dphil-shrub-output-%s-%i-(%s).csv\" subject modelId regexGuid\n", + "// files |\u003e Seq.choose(fun f -\u003e \n", + "// let m = System.Text.RegularExpressions.Regex.Match(f.Name, regex)\n", + "// if m.Success\n", + "// then \n", + "// let guid = m.Groups.[1].Value |\u003e System.Guid.Parse\n", + "// (guid, f) |\u003e Some\n", + "// else None )\n", + "// else invalidArg \"directory\" \"The specified directory does not exist\"\n", + "\n", + "// let toTrace (data:OldTrace) : (float * float []) list =\n", + "// data.Rows\n", + "// |\u003e Seq.groupBy(fun r -\u003e r.Iteration)\n", + "// |\u003e Seq.map(fun (i,r) -\u003e \n", + "// i,\n", + "// (r |\u003e Seq.head).NegativeLogLikelihood, \n", + "// r |\u003e Seq.map(fun r -\u003e r.ParameterValue) |\u003e Seq.toArray)\n", + "// |\u003e Seq.sortByDescending(fun (i,_,_) -\u003e i)\n", + "// |\u003e Seq.map(fun (_,x,y) -\u003e x,y)\n", + "// |\u003e Seq.toList\n", + "\n", + "// let loadOldTrace directory subject modelId =\n", + "// let traceFiles = fileMatch directory subject modelId\n", + "// traceFiles\n", + "// |\u003e Seq.choose(fun (i,f) -\u003e\n", + "// printfn \"File loading is %s\" f.FullName\n", + "// let data = OldTrace.Load f.FullName\n", + "// match data.Rows |\u003e Seq.length with\n", + "// | 0 -\u003e None\n", + "// | _ -\u003e data |\u003e toTrace |\u003e Some )\n", + "\n", + "// let oldShrubDir = \"/Users/andrewmartin/Documents/DPhil Zoology/Bristlecone Results/YuribeiAnnual/\"\n", + "\n", + "// let oldMleResults = \n", + "// seq {\n", + "// for s in shrubs do\n", + "// for hi in [ 1 .. 12 ] do\n", + "// let oldResult = LoadOldTrace.loadOldTrace oldShrubDir s.Identifier.Value hi |\u003e Seq.concat |\u003e Seq.toList\n", + "// let mle = oldResult |\u003e Seq.minBy(fun (p,l) -\u003e p)\n", + "// yield s, hi, mle\n", + "// } \n", + "// |\u003e Seq.toList\n", + "\n", + "\n", + "// // 2. Setup each so that \n", + "\n", + "// module Cool =\n", + "\n", + "// open Bristlecone.Bristlecone\n", + "// open Bristlecone.Optimisation\n", + "\n", + "// /// \"How good am I at predicting the next data point\"?\n", + "// /// \n", + "// let oneStepAhead engine hypothesis (preTransform:CodedMap\u003cTimeSeries\u003cfloat\u003e\u003e-\u003eCodedMap\u003cTimeSeries\u003cfloat\u003e\u003e) (timeSeries) (estimatedTheta:ParameterPool) =\n", + "// let mleToBounds mlePool = mlePool |\u003e Map.map(fun k v -\u003e Parameter.create (Parameter.detatchConstraint v |\u003e snd) (v |\u003e Parameter.getEstimate) (v |\u003e Parameter.getEstimate))\n", + "// let hypothesisMle : ModelSystem = { hypothesis with Parameters = mleToBounds estimatedTheta }\n", + "// let pairedDataFrames =\n", + "// timeSeries\n", + "// |\u003e Map.map(fun _ fitSeries -\u003e \n", + "// fitSeries \n", + "// |\u003e TimeSeries.toObservations \n", + "// |\u003e Seq.pairwise \n", + "// |\u003e Seq.map (fun (t1,t2) -\u003e TimeSeries.fromObservations [t1; t2] |\u003e TimeSeries.map(fun (x,y) -\u003e x )))\n", + "// printfn \"Paired data frames = %A\" pairedDataFrames\n", + "// let timeParcelCount = (pairedDataFrames |\u003e Seq.head).Value |\u003e Seq.length\n", + "// printfn \"Time parcels: %i\" timeParcelCount\n", + "// let data =\n", + "// seq { 1 .. timeParcelCount }\n", + "// |\u003e Seq.map(fun i -\u003e pairedDataFrames |\u003e Map.map(fun _ v -\u003e v |\u003e Seq.item (i-1)) |\u003e preTransform)\n", + "// printfn \"Data: %A\" data\n", + "\n", + "// // TODO Remove this hack:\n", + "// // It is predicting with a repeated first point... so...\n", + "// // The next point estimate is at t1\n", + "// // The next point observation is at t2\n", + "// data\n", + "// |\u003e Seq.map (fun d -\u003e \n", + "// let est = Bristlecone.fit (engine |\u003e withCustomOptimisation Optimisation.None.passThrough |\u003e withConditioning RepeatFirstDataPoint) (EndConditions.afterIteration 0) d hypothesisMle\n", + "// printfn \"Estimated time series is %A\" (est |\u003e fst).Series\n", + "\n", + "// let nextObservation = d |\u003e Map.map(fun c ts -\u003e ts |\u003e TimeSeries.toObservations |\u003e Seq.skip 1 |\u003e Seq.head)\n", + "// let paired =\n", + "// nextObservation\n", + "// |\u003e Map.map(fun code obs -\u003e\n", + "// let nextEstimate = ((est |\u003e fst).Series.[code].Values |\u003e Seq.head).Fit\n", + "// obs |\u003e snd, obs |\u003e fst, nextEstimate\n", + "// )\n", + "\n", + "// paired\n", + "// )\n", + "// |\u003e Seq.toList\n", + "\n", + "// /// Perform n-step-ahead computation on the hypothesis and plant.\n", + "// let predictAhead (engine:EstimationEngine.EstimationEngine\u003cfloat,float\u003e) system (plant:PlantIndividual) preTransform estimate =\n", + "// let g =\n", + "// match plant.Growth |\u003e growthSeries with\n", + "// | Absolute g -\u003e g\n", + "// | Cumulative g -\u003e g\n", + "// | Relative g -\u003e g\n", + "// let predictors = plant.Environment |\u003e Map.add (ShortCode.create \"x\") g\n", + "// oneStepAhead engine system preTransform predictors estimate\n", + "\n", + "\n", + "// let oneStepPredictions =\n", + "// oldMleResults\n", + "// |\u003e List.map(fun (s,hi,mle) -\u003e\n", + "\n", + "// // 0. Convert x into biomass\n", + "// let preTransform (data:CodedMap\u003cTimeSeries\u003cfloat\u003e\u003e) =\n", + "// data\n", + "// |\u003e Map.toList\n", + "// |\u003e List.collect(fun (k,v) -\u003e\n", + "// if k = code \"x\"\n", + "// then [ (k, v); (code \"bs\", v |\u003e TimeSeries.map(fun (x,_) -\u003e x |\u003e ModelComponents.Proxies.toBiomassMM)) ]\n", + "// else [ (k, v)] )\n", + "// |\u003e Map.ofList\n", + "\n", + "// // 1. Arrange the subject and settings\n", + "// let shrub = s |\u003e PlantIndividual.toCumulativeGrowth\n", + "// let common = shrub |\u003e PlantIndividual.keepCommonYears\n", + "// let startDate = (common.Environment.[code \"N\"]).StartDate |\u003e snd\n", + "// let startConditions = getStartValues startDate shrub\n", + "// let e = Options.engine |\u003e Bristlecone.withConditioning (Custom startConditions)\n", + "\n", + "// let mlePool = \n", + "// hypotheses.[hi-1].Parameters\n", + "// |\u003e Map.toList\n", + "// |\u003e List.mapi(fun i (sc,p) -\u003e\n", + "// let est = (mle |\u003e snd).[i]\n", + "// sc, Parameter.setEstimate p est)\n", + "// |\u003e ParameterPool\n", + "\n", + "// Cool.predictAhead e hypotheses.[hi-1] common preTransform mlePool\n", + "// |\u003e List.map(fun r -\u003e s.Identifier.Value, hi, r)\n", + "// )\n", + "\n", + "\n", + "// type SOSRow = {\n", + "// Year: int\n", + "// Variable: string\n", + "// Shrub: string\n", + "// Hypothesis: int\n", + "// Observation: float\n", + "// OneStepPrediction: float\n", + "// }\n", + "\n", + "// let predictions = \n", + "// oneStepPredictions\n", + "// |\u003e List.collect(fun m -\u003e\n", + "// m |\u003e Seq.collect(fun (s,h,m) -\u003e \n", + "// m |\u003e Seq.map(fun kv -\u003e\n", + "// let y,a,b = kv.Value\n", + "// let x = \n", + "// {\n", + "// Year = y.Year\n", + "// Variable = kv.Key.Value\n", + "// Observation = a\n", + "// Shrub = s\n", + "// Hypothesis = h\n", + "// OneStepPrediction = b }\n", + "// x\n", + "// )) |\u003e Seq.toList )\n", + "\n", + "// predictions\n", + "// |\u003e List.map(fun x -\u003e sprintf \"%s,%i,%i,%s,%f,%f\" x.Shrub x.Hypothesis x.Year x.Variable x.Observation x.OneStepPrediction)\n", + "// |\u003e List.append [\"Shrub,Hypothesis,Year,Variable,Observed,OneStepPrediction\"]\n", + "// |\u003e String.concat \"\\n\"\n", + "// |\u003e fun x -\u003e System.IO.File.WriteAllText(\"/Users/andrewmartin/Desktop/onestepahead.csv\", x)\n", + "\n", + "// // Root mean squared error is the average squared differences, then square rooted.\n", + "// let rmse =\n", + "// predictions\n", + "// |\u003e List.groupBy(fun x -\u003e x.Shrub, x.Hypothesis, x.Variable)\n", + "// |\u003e List.map(fun ((s,h,v),x) -\u003e\n", + "// let sos = x |\u003e Seq.averageBy(fun x -\u003e (x.Observation - x.OneStepPrediction) ** 2.)\n", + "// s, h, v, sqrt sos)\n", + "\n", + "// rmse\n", + "// |\u003e List.map(fun (s,h,v,sos) -\u003e sprintf \"%s,%i,%s,%f\" s h v sos)\n", + "// |\u003e List.append [\"Shrub,Hypothesis,Variable,RMSE\"]\n", + "// |\u003e String.concat \"\\n\"\n", + "// |\u003e fun x -\u003e System.IO.File.WriteAllText(\"/Users/andrewmartin/Desktop/onestepahead-2.csv\", x)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/examples/tutorial.fsx b/examples/tutorial.fsx new file mode 100644 index 0000000..32f334a --- /dev/null +++ b/examples/tutorial.fsx @@ -0,0 +1,5 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" + diff --git a/examples/tutorial.html b/examples/tutorial.html new file mode 100644 index 0000000..4b4dc67 --- /dev/null +++ b/examples/tutorial.html @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + Quick Tour | bristlecone + + + + + + + + + + + + +
            + +
            + + + + + +
            +
            + +
            +
            + + + +
            +
            + + + +
            +
              +

              Type something to start searching.

              +
              +
              + + + + + + + \ No newline at end of file diff --git a/examples/tutorial.ipynb b/examples/tutorial.ipynb new file mode 100644 index 0000000..7e91b3e --- /dev/null +++ b/examples/tutorial.ipynb @@ -0,0 +1,246 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n", + "\n", + "// (**\n", + "// Tutorial\n", + "// ========================\n", + "\n", + "// * [Quick Start: Predator-Prey Dynamics](#quick-start-predator-prey-dynamics)\n", + "// * [Defining the model](#defining-the-model)\n", + "// * [The likelihood function](#The-likelihood-function)\n", + "// * [Putting it all together](#Putting-it-all-together)\n", + "// * [Does my model and method work?](#Does-my-model-and-method-work?)\n", + "// * [Fitting to observation data](#Fitting-to-observation-data)\n", + "// * [Time Modes (+ Integration)](#time-modes)\n", + "// * [Optimisation](#optimisation)\n", + "// * Working with Time Series\n", + "// * Setting a Likelihood Function\n", + "// * Measurement Variables\n", + "// * Environmental Forcing\n", + "\n", + "// ## Quick Start: Predator-Prey Dynamics\n", + "\n", + "// Here we use the classic example of snowshoe hare and lynx predator-prey dynamics, to demonstrate the basic functions of Bristlecone. The full example is in ``/samples/1. lynx-hare.fsx``.\n", + "\n", + "// In an F# script or interactive session, first load and open the Bristlecone library.\n", + "\n", + "// *)\n", + "\n", + "// #load \"bristlecone.fsx\"\n", + "// open Bristlecone\n", + "// open Bristlecone.ModelSystem\n", + "\n", + "// (**### Defining the model\n", + "\n", + "// A model system is defined as a series of differential equations, parameters, and a likelihood function. The model system is here defined as a pair of ordinary differential equations. \n", + "\n", + "// *)\n", + "// /// Number of snowshoe hares\n", + "// let dhdt\u0027 hare lynx alpha beta =\n", + "// alpha * hare - beta * hare * lynx\n", + "\n", + "// /// Number of lynx\n", + "// let dldt\u0027 lynx hare delta gamma =\n", + "// - gamma * lynx + delta * hare * lynx\n", + "\n", + "\n", + "// (**The parameters required for the model are defined as a ``CodedMap\u003cParameter\u003e``. For the predator-prey model, they are defined as:*)\n", + "\n", + "// [ // Natural growth rate of hares in absence of predation\n", + "// ShortCode.create \"alpha\", Parameter.create Unconstrained 0.10 0.60\n", + "// // Death rate per encounter of hares due to predation\n", + "// ShortCode.create \"beta\", Parameter.create Unconstrained 0.001 0.0135\n", + "// // Efficiency of turning predated hares into lynx\n", + "// ShortCode.create \"delta\", Parameter.create Unconstrained 0.001 0.0135 \n", + "// // Natural death rate of lynx in the absence of food\n", + "// ShortCode.create \"gamma\", Parameter.create Unconstrained 0.10 0.60\n", + "// ] |\u003e Map.ofList\n", + "\n", + "\n", + "// (**### The likelihood function\n", + "\n", + "// For this example, we are simply using sum of squares as our measure of goodness of fit. Bristlecone includes sum of squares, and some neagtive log likelihood functions within the ``Bristlecone.Likelihood`` module.\n", + "// *)\n", + "\n", + "// ModelLibrary.Likelihood.sumOfSquares [\"hare\"; \"lynx\"]\n", + "\n", + "// (**### Putting it all together\n", + "\n", + "// The above models, parameters, and likelihood function must be tied together in a ``ModelSystem`` type. A complete model system for this problem is defined here:\n", + "// *)\n", + "\n", + "// let ``predator-prey`` =\n", + "\n", + "// let dhdt p _ x (e:Environment) =\n", + "// dhdt\u0027 x \n", + "// (e.[ShortCode.create \"lynx\"]) \n", + "// (p |\u003e Pool.getEstimate \"alpha\") \n", + "// (p |\u003e Pool.getEstimate \"beta\")\n", + " \n", + "// let dldt p _ y (e:Environment) =\n", + "// dldt\u0027 y \n", + "// (e.[ShortCode.create \"hare\"]) \n", + "// (p |\u003e Pool.getEstimate \"delta\") \n", + "// (p |\u003e Pool.getEstimate \"gamma\")\n", + "\n", + "// { Equations = [ code \"hare\", dhdt\n", + "// code \"lynx\", dldt ] |\u003e Map.ofList\n", + "// Measures = [] |\u003e Map.ofList\n", + "// Parameters = [ code \"alpha\", parameter PositiveOnly 0.10 0.60\n", + "// code \"beta\", parameter PositiveOnly 0.001 0.0135\n", + "// code \"delta\", parameter PositiveOnly 0.001 0.0135\n", + "// code \"gamma\", parameter PositiveOnly 0.10 0.60\n", + "// ] |\u003e Map.ofList\n", + "// Likelihood = ModelLibrary.Likelihood.sumOfSquares [\"hare\"; \"lynx\"] }\n", + "// (**\n", + "\n", + "// The intermediate functions ``dhdt`` and ``dldt`` connect the raw ODEs to the functional signature required by Bristlecone. This feeds the current parameter estimates and variable values into the model. \n", + "\n", + "// The modelling protocol is defined by an ``EstimationEngine``, which can be reused for any number of analyses. \n", + "// *)\n", + "\n", + "// let engine = \n", + "// Bristlecone.mkContinuous\n", + "// |\u003e Bristlecone.withConditioning RepeatFirstDataPoint\n", + "\n", + "\n", + "// (**### Does my model and method work?\n", + "\n", + "// It is recommended that any new model and method combination is tested, to verify that - given a known set of parameters - the same parameters are estimated. Bristlecone can draw many sets of random parameters and test that these can be correctly estimated:\n", + "// *)\n", + "\n", + "// let startValues = \n", + "// [ code \"lynx\", 30.09\n", + "// code \"hare\", 19.58 ] |\u003e Map.ofList\n", + "\n", + "// //``predator-prey`` |\u003e Bristlecone.testModel engine Options.testSeriesLength startValues Options.iterations Options.burn\n", + "\n", + "// (**\n", + "\n", + "// ### Fitting to observation data\n", + "\n", + "// In the example script, we load data using FSharp.Data, from a CSV file. You can choose to load data using any method. The raw data is parsed into a Map of TimeSeries using the ``TimeSeries.createVarying`` function.\n", + "// *)\n", + "\n", + "// type PopulationData = FSharp.Data.CsvProvider\u003c\"../samples/data/lynx-hare.csv\"\u003e\n", + "\n", + "// let data = \n", + "// let csv = PopulationData.Load \"../samples/data/lynx-hare.csv\"\n", + "// [ code \"hare\", \n", + "// TimeSeries.fromObservations (csv.Rows |\u003e Seq.map(fun r -\u003e r.Year, float r.Hare))\n", + "// code \"lynx\", \n", + "// TimeSeries.fromObservations (csv.Rows |\u003e Seq.map(fun r -\u003e r.Year, float r.Lynx)) \n", + "// ] |\u003e Map.ofList\n", + "\n", + "\n", + "// (**To get model fitting results:*)\n", + "\n", + "// let result = \n", + "// ``predator-prey``\n", + "// //|\u003e Bristlecone.fit engine Options.iterations Options.burn data\n", + "\n", + "\n", + "// (**## Time Modes\n", + "\n", + "// Bristlecone can run models in either discrete time, or continuous time. When running models in continuous time, an integration function is required:\n", + "// *)\n", + "\n", + "// type TimeMode\u003c\u0027data, \u0027time\u003e =\n", + "// | Discrete\n", + "// | Continuous of Integrate\u003c\u0027data, \u0027time\u003e\n", + "\n", + "// and Integrate\u003c\u0027data,\u0027time\u003e = \u0027time -\u003e \u0027time -\u003e \u0027time -\u003e CodedMap\u003c\u0027data\u003e -\u003e CodedMap\u003cODE\u003e -\u003e CodedMap\u003c\u0027data[]\u003e\n", + "\n", + "// (**\n", + "// Currently only fixed timesteps are supported, but variable timestep support (e.g. for sediment core data) is planned. \n", + "\n", + "// Two integration functions are included:\n", + "\n", + "// | Solver | Function | Description |\n", + "// | - | - | - |\n", + "// | Runge-Kutta 4 (MathNet Numerics) | ``Integration.MathNet.integrate`` | A fourth-order Runge Kutta method to provide approximate solutions to ODE systems. |\n", + "// | Runge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research) | ``Integration.MsftOslo.integrate`` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf).|\n", + "\n", + "// ## Optimisation\n", + "\n", + "// Bristlecone supports optimisation functions that have the following type signature:\n", + "\n", + "// ```fsharp\n", + "// type Optimise\u003c\u0027data\u003e = int -\u003e int -\u003e Domain -\u003e (\u0027data[] -\u003e \u0027data) -\u003e (\u0027data * \u0027data []) list\n", + "// ```\n", + "\n", + "// There are two optimsation techniques currently built-in:\n", + "\n", + "// | Method | Function | Description |\n", + "// | - | - | - |\n", + "// | Amoeba (Nelder-Mead) | ``Optimisation.Amoeba.solve`` | A gradient-descent method. |\n", + "// | MCMC Random Walk | ``Optimisation.MonteCarlo.randomWalk`` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf).|\n", + "\n", + "\n", + "// ## Estimation Engines\n", + "\n", + "// To use Bristlecone functions requires a configured ``EstimationEngine``. The easiest way is with the helper functions within the ``Bristlecone`` module:\n", + "\n", + "// | Function | Type | Description |\n", + "// | - | - | - |\n", + "// | ``mkContinuous`` | EstimationEngine | Default continuous engine |\n", + "// | ``mkDiscrete`` | EstimationEngine | Default discrete model engine |\n", + "// | ``withContinuousTime`` | t : Integrate\u003c\u0027a,\u0027b\u003e -\u003e engine: EstimationEngine\u003c\u0027a,\u0027b\u003e -\u003e EstimationEngine\u003c\u0027a,\u0027b\u003e | Transforms engine to continuous time mode, using the given integrator function. |\n", + "// | ``withConditioning`` | c: Conditioning -\u003e engine: EstimationEngine\u003c\u0027a,\u0027b\u003e -\u003e EstimationEngine\u003c\u0027a,\u0027b\u003e | Choose how the start point is chosen when solving the model system. |\n", + "\n", + "// **)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/img/badge-notebook.svg b/img/badge-notebook.svg new file mode 100644 index 0000000..a001b54 --- /dev/null +++ b/img/badge-notebook.svg @@ -0,0 +1 @@ +Download notebookDownload notebook \ No newline at end of file diff --git a/img/badge-script.svg b/img/badge-script.svg new file mode 100644 index 0000000..90c93eb --- /dev/null +++ b/img/badge-script.svg @@ -0,0 +1 @@ +Download scriptDownload script \ No newline at end of file diff --git a/img/example.png b/img/example.png new file mode 100644 index 0000000..4af1da0 Binary files /dev/null and b/img/example.png differ diff --git a/img/favicon.ico b/img/favicon.ico new file mode 100644 index 0000000..d68b842 Binary files /dev/null and b/img/favicon.ico differ diff --git a/img/logo-wide.png b/img/logo-wide.png new file mode 100644 index 0000000..45e8705 Binary files /dev/null and b/img/logo-wide.png differ diff --git a/img/logo.png b/img/logo.png new file mode 100644 index 0000000..d791e04 Binary files /dev/null and b/img/logo.png differ diff --git a/index.fsx b/index.fsx new file mode 100644 index 0000000..f423433 --- /dev/null +++ b/index.fsx @@ -0,0 +1,118 @@ +(** + +*) +#r "nuget: Bristlecone,{{package-version}}" +(** +# Bristlecone + +Bristlecone is a library for conducting model-fitting and model-selection analyses on time-series data. +Although originally designed for the investigation of non-linear dynamics within ecological +and environmental sciences, the library can be used across finance, econometrics and +other fields that apply non-linear modelling techniques. + +## Quick Start + +Bristlecone is an F# .NET library. You can easily get started by installing +[the latest .NET SDK](https://dot.net). You may then simply use the +Bristlecone package in a script, application, or library. +The nuget package [is available here](https://nuget.org/packages/Bristlecone). + +### To use in an F# script + +![img/example.png](img/example.png) + +## Example + +This example demonstrates the layout of a model when defined in Bristlecone. + +*) +open Bristlecone // Opens Bristlecone core library and estimation engine +open Bristlecone.Language // Open the language for writing Bristlecone models + +let hypothesis = + + let vonBertalanffy = + Parameter "η" * This ** Parameter "β" - Parameter "κ" * This + + Model.empty + |> Model.addEquation "mass" vonBertalanffy + |> Model.estimateParameter "η" noConstraints 0.50 1.50 + |> Model.estimateParameter "β" noConstraints 0.01 1.00 + |> Model.estimateParameter "κ" noConstraints 0.01 1.00 + |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ "mass" ]) + |> Model.compile + +let engine = + Bristlecone.mkContinuous + |> Bristlecone.withCustomOptimisation (Optimisation.Amoeba.swarm 5 20 Optimisation.Amoeba.Solver.Default) + +let testSettings = Bristlecone.Test.TestSettings.Default +let testResult = Bristlecone.testModel engine testSettings hypothesis(* output: +val hypothesis: Bristlecone.ModelSystem.ModelSystem = + { Parameters = + Pool + (map + [(ShortCode "β", + Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0))); + (ShortCode "η", + Parameter (Unconstrained, Transform, NotEstimated (0.5, 1.5))); + (ShortCode "κ", + Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0)))]) + Equations = map [(ShortCode "mass", )] + Measures = map [] + Likelihood = } +val engine: Bristlecone.EstimationEngine.EstimationEngine = + { TimeHandling = Continuous + OptimiseWith = InTransformedSpace + Conditioning = RepeatFirstDataPoint + LogTo = + Random = MathNet.Numerics.Random.MersenneTwister } +val testSettings: Bristlecone.Test.TestSettings = + { TimeSeriesLength = 30 + StartValues = map [] + EndCondition = + GenerationRules = [] + NoiseGeneration = + EnvironmentalData = map [] + Resolution = Years PositiveInt 1 + Random = MathNet.Numerics.Random.MersenneTwister + StartDate = 1/1/1970 12:00:00 AM + Attempts = 50000 } +val testResult: Result = + Error + "You must specify a start point for the following equations: ["+[17 chars]*) +(** +In the above snippet, a von Bertalanffy growth model is defined as a hypothesis to test. We then create an `EstimationEngine`, which defines the methodology for model-fitting. In Bristlecone, an `EstimationEngine` is created and customised using the F# forward pipe operator (for R users this may be familiar; this concept was adapted into the dplyr %>% operator). The call to `testModel` generates random test data, and assesses whether the model-fitting method can accurately estimate known parameters. + +## Samples & documentation + +An API reference is automatically generated from XML comments in the library implementation. + +In addition, this documentation includes step-by-step example analyses. Each analysis may be downloaded +as an F# script or Jupyter notebook using the buttons at the top of each example page. + +* [The predator-prey example](examples/predator-prey.html) covers basic model-fitting with Bristlecone. + + +* [The shrub-resource example](example/shrub-resource.html) is a more +comprehensive example that covers model-fitting and model-selection (MFMS) with Bristlecone. + + +* The [API Reference](reference/index.html) contains automatically generated documentation for all types, modules +and functions in the library. This includes additional brief samples on using most of the +functions. + + +## Contributing and copyright + +The project is hosted on [GitHub](https://github.com/AndrewIOM/Bristlecone) where you can [report issues](https://github.com/AndrewIOM/Bristlecone/issues), fork +the project and submit pull requests. If you're adding a new public API, please also +consider adding [samples](https://github.com/AndrewIOM/Bristlecone/tree/master/docs/content) that can be turned into a documentation. You might +also want to read the [library design notes](https://github.com/AndrewIOM/Bristlecone/blob/master/README.md) to understand how it works. + +The library is available under an MIT license, which allows modification and +redistribution for both commercial and non-commercial purposes. For more information see the +[License file](https://github.com/AndrewIOM/Bristlecone/blob/master/LICENSE) in the GitHub repository. + +*) + diff --git a/index.html b/index.html new file mode 100644 index 0000000..cf20eb4 --- /dev/null +++ b/index.html @@ -0,0 +1,529 @@ + + + + + + + + + + + + + + + + + + Index | bristlecone + + + + + + + + + + + + +
              + +
              + + + + + +
              +
              + +
              +
              + +

              Bristlecone

              +

              Bristlecone is a library for conducting model-fitting and model-selection analyses on time-series data. +Although originally designed for the investigation of non-linear dynamics within ecological +and environmental sciences, the library can be used across finance, econometrics and +other fields that apply non-linear modelling techniques.

              +

              Quick Start

              +

              Bristlecone is an F# .NET library. You can easily get started by installing +the latest .NET SDK. You may then simply use the +Bristlecone package in a script, application, or library. +The nuget package is available here.

              +

              To use in an F# script

              +

              img/example.png

              +

              Example

              +

              This example demonstrates the layout of a model when defined in Bristlecone.

              +
              open Bristlecone            // Opens Bristlecone core library and estimation engine
              +open Bristlecone.Language   // Open the language for writing Bristlecone models
              +
              +let hypothesis =
              +
              +    let vonBertalanffy = 
              +        Parameter "η" * This ** Parameter "β" - Parameter "κ" * This
              +
              +    Model.empty
              +    |> Model.addEquation       "mass"   vonBertalanffy
              +    |> Model.estimateParameter "η"      noConstraints 0.50 1.50 
              +    |> Model.estimateParameter "β"      noConstraints 0.01 1.00
              +    |> Model.estimateParameter "κ"      noConstraints 0.01 1.00 
              +    |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ "mass" ])
              +    |> Model.compile
              +
              +let engine = 
              +    Bristlecone.mkContinuous
              +    |> Bristlecone.withCustomOptimisation (Optimisation.Amoeba.swarm 5 20 Optimisation.Amoeba.Solver.Default)
              +
              +let testSettings = Bristlecone.Test.TestSettings<float>.Default
              +let testResult = Bristlecone.testModel engine testSettings hypothesis
              +
              +
              val hypothesis: Bristlecone.ModelSystem.ModelSystem =
              +  { Parameters =
              +     Pool
              +       (map
              +          [(ShortCode "β",
              +            Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0)));
              +           (ShortCode "η",
              +            Parameter (Unconstrained, Transform, NotEstimated (0.5, 1.5)));
              +           (ShortCode "κ",
              +            Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0)))])
              +    Equations = map [(ShortCode "mass", <fun:Invoke@3682-2>)]
              +    Measures = map []
              +    Likelihood = <fun:hypothesis@14> }
              +val engine: Bristlecone.EstimationEngine.EstimationEngine<float,float> =
              +  { TimeHandling = Continuous <fun:mkContinuous@23>
              +    OptimiseWith = InTransformedSpace <fun:swarm@1458>
              +    Conditioning = RepeatFirstDataPoint
              +    LogTo = <fun:logger@45-5>
              +    Random = MathNet.Numerics.Random.MersenneTwister }
              +val testSettings: Bristlecone.Test.TestSettings<float> =
              +  { TimeSeriesLength = 30
              +    StartValues = map []
              +    EndCondition = <fun:get_Default@78-3>
              +    GenerationRules = []
              +    NoiseGeneration = <fun:get_Default@80-4>
              +    EnvironmentalData = map []
              +    Resolution = Years PositiveInt 1
              +    Random = MathNet.Numerics.Random.MersenneTwister
              +    StartDate = 1/1/1970 12:00:00 AM
              +    Attempts = 50000 }
              +val testResult: Result<Bristlecone.Test.TestResult,string> =
              +  Error
              +    "You must specify a start point for the following equations: ["+[17 chars]
              +

              In the above snippet, a von Bertalanffy growth model is defined as a hypothesis to test. We then create an EstimationEngine, which defines the methodology for model-fitting. In Bristlecone, an EstimationEngine is created and customised using the F# forward pipe operator (for R users this may be familiar; this concept was adapted into the dplyr %>% operator). The call to testModel generates random test data, and assesses whether the model-fitting method can accurately estimate known parameters.

              +

              Samples & documentation

              +

              An API reference is automatically generated from XML comments in the library implementation.

              +

              In addition, this documentation includes step-by-step example analyses. Each analysis may be downloaded +as an F# script or Jupyter notebook using the buttons at the top of each example page.

              +
                +
              • The predator-prey example covers basic model-fitting with Bristlecone.

              • +
              • +

                The shrub-resource example is a more +comprehensive example that covers model-fitting and model-selection (MFMS) with Bristlecone.

                +
              • +
              • +

                The API Reference contains automatically generated documentation for all types, modules +and functions in the library. This includes additional brief samples on using most of the +functions.

                +
              • +
              +

              Contributing and copyright

              +

              The project is hosted on GitHub where you can report issues, fork +the project and submit pull requests. If you're adding a new public API, please also +consider adding samples that can be turned into a documentation. You might +also want to read the library design notes to understand how it works.

              +

              The library is available under an MIT license, which allows modification and +redistribution for both commercial and non-commercial purposes. For more information see the +License file in the GitHub repository.

              + +
              Multiple items
              module Bristlecone + +from Bristlecone

              --------------------
              namespace Bristlecone
              +
              module Language + +from Bristlecone
              <summary> + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +</summary>
              +
              val hypothesis: ModelSystem.ModelSystem
              +
              val vonBertalanffy: ModelExpression
              +
              Multiple items
              union case ModelExpression.Parameter: string -> ModelExpression

              --------------------
              module Parameter + +from Bristlecone
              +
              union case ModelExpression.This: ModelExpression
              +
              module Model + +from Bristlecone.Language
              <summary> + Terms for scaffolding a model system for use with Bristlecone. +</summary>
              +
              val empty: ModelBuilder.ModelBuilder
              +
              val addEquation: name: string -> eq: ModelExpression -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
              +
              val estimateParameter: name: string -> constraintMode: Parameter.Constraint -> lower: float -> upper: float -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
              +
              val noConstraints: Parameter.Constraint
              +
              val useLikelihoodFunction: likelihoodFn: ModelSystem.LikelihoodFn -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
              +
              namespace Bristlecone.ModelLibrary
              +
              module Likelihood + +from Bristlecone.ModelLibrary
              <summary>Likelihood functions to represent a variety of distributions and data types.</summary>
              <namespacedoc><summary>Pre-built model parts for use in Bristlecone</summary></namespacedoc>
              +
              val sumOfSquares: keys: string list -> ModelSystem.ParameterValueAccessor -> data: CodedMap<ModelSystem.PredictedSeries> -> float
              <summary> + Residual sum of squares. Provides a simple metric of distance between + observed data and model predictions. +</summary>
              +
              val compile: (ModelBuilder.ModelBuilder -> ModelSystem.ModelSystem)
              +
              val engine: EstimationEngine.EstimationEngine<float,float>
              +
              val mkContinuous: EstimationEngine.EstimationEngine<float,float>
              <summary> + A standard `EstimationEngine` for ordinary differential equation models. +</summary>
              +
              val withCustomOptimisation: optim: EstimationEngine.Optimiser<'a> -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
              +
              namespace Bristlecone.Optimisation
              +
              module Amoeba + +from Bristlecone.Optimisation
              <summary> + Nelder Mead implementation + Adapted from original at: https://github.com/mathias-brandewinder/Amoeba +</summary>
              +
              val swarm: levels: int -> amoebaAtLevel: int -> settings: Optimisation.Amoeba.Solver.Settings -> EstimationEngine.Optimiser<float>
              <summary> + Optimisation heuristic that creates a swarm of amoeba (Nelder-Mead) solvers. + The swarm proceeds for `numberOfLevels` levels, constraining the starting bounds + at each level to the 80th percentile of the current set of best likelihoods. +</summary>
              +
              module Solver + +from Bristlecone.Optimisation.Amoeba
              +
              val Default: Optimisation.Amoeba.Solver.Settings
              +
              val testSettings: Test.TestSettings<float>
              +
              module Test + +from Bristlecone
              +
              type TestSettings<'a> = + { + TimeSeriesLength: int + StartValues: CodedMap<'a> + EndCondition: EndCondition<'a> + GenerationRules: GenerationRule list + NoiseGeneration: (Random -> Pool -> CodedMap<TimeSeries<'a>> -> Result<CodedMap<TimeSeries<'a>>,string>) + EnvironmentalData: CodedMap<TimeSeries<'a>> + Resolution: FixedTemporalResolution + Random: Random + StartDate: DateTime + Attempts: int + } + static member Default: TestSettings<float>
              +
              Multiple items
              val float: value: 'T -> float (requires member op_Explicit)

              --------------------
              type float = System.Double

              --------------------
              type float<'Measure> = + float
              +
              val testResult: Result<Test.TestResult,string>
              +
              val testModel: engine: EstimationEngine.EstimationEngine<float,float> -> settings: Test.TestSettings<float> -> model: ModelSystem.ModelSystem -> Result<Test.TestResult,string>
              <summary> + **Description** + Test that the specified estimation engine can correctly estimate known parameters. Random parameter sets are generated from the given model system. + **Parameters** + * `model` - a `ModelSystem` of equations and parameters + * `testSettings` - settings + * `engine` - an `EstimationEngine` +</summary>
              + +
              +
              + + + +
              +
                +

                Type something to start searching.

                +
                +
                + + + + + + + \ No newline at end of file diff --git a/index.ipynb b/index.ipynb new file mode 100644 index 0000000..e7e39a0 --- /dev/null +++ b/index.ipynb @@ -0,0 +1,204 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,{{package-version}}\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Bristlecone\n", + "\n", + "Bristlecone is a library for conducting model-fitting and model-selection analyses on time-series data.\n", + "Although originally designed for the investigation of non-linear dynamics within ecological\n", + "and environmental sciences, the library can be used across finance, econometrics and\n", + "other fields that apply non-linear modelling techniques.\n", + "\n", + "## Quick Start\n", + "\n", + "Bristlecone is an F# .NET library. You can easily get started by installing\n", + "[the latest .NET SDK](https://dot.net). You may then simply use the\n", + "Bristlecone package in a script, application, or library.\n", + "The nuget package [is available here](https://nuget.org/packages/Bristlecone).\n", + "\n", + "### To use in an F# script\n", + "\n", + "![img/example.png](img/example.png)\n", + "\n", + "## Example\n", + "\n", + "This example demonstrates the layout of a model when defined in Bristlecone.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [ + { + "data": { + "text/plain": ["val hypothesis: Bristlecone.ModelSystem.ModelSystem =", +" { Parameters =", +" Pool", +" (map", +" [(ShortCode \"β\",", +" Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0)));", +" (ShortCode \"η\",", +" Parameter (Unconstrained, Transform, NotEstimated (0.5, 1.5)));", +" (ShortCode \"κ\",", +" Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0)))])", +" Equations = map [(ShortCode \"mass\", \u003cfun:Invoke@3682-2\u003e)]", +" Measures = map []", +" Likelihood = \u003cfun:hypothesis@14\u003e }", +"val engine: Bristlecone.EstimationEngine.EstimationEngine\u003cfloat,float\u003e =", +" { TimeHandling = Continuous \u003cfun:mkContinuous@23\u003e", +" OptimiseWith = InTransformedSpace \u003cfun:swarm@1458\u003e", +" Conditioning = RepeatFirstDataPoint", +" LogTo = \u003cfun:logger@45-5\u003e", +" Random = MathNet.Numerics.Random.MersenneTwister }", +"val testSettings: Bristlecone.Test.TestSettings\u003cfloat\u003e =", +" { TimeSeriesLength = 30", +" StartValues = map []", +" EndCondition = \u003cfun:get_Default@78-3\u003e", +" GenerationRules = []", +" NoiseGeneration = \u003cfun:get_Default@80-4\u003e", +" EnvironmentalData = map []", +" Resolution = Years PositiveInt 1", +" Random = MathNet.Numerics.Random.MersenneTwister", +" StartDate = 1/1/1970 12:00:00 AM", +" Attempts = 50000 }", +"val testResult: Result\u003cBristlecone.Test.TestResult,string\u003e =", +" Error", +" \"You must specify a start point for the following equations: [\"+[17 chars]"] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + }], + "source": [ + "open Bristlecone // Opens Bristlecone core library and estimation engine\n", + "open Bristlecone.Language // Open the language for writing Bristlecone models\n", + "\n", + "let hypothesis =\n", + "\n", + " let vonBertalanffy = \n", + " Parameter \"η\" * This ** Parameter \"β\" - Parameter \"κ\" * This\n", + "\n", + " Model.empty\n", + " |\u003e Model.addEquation \"mass\" vonBertalanffy\n", + " |\u003e Model.estimateParameter \"η\" noConstraints 0.50 1.50 \n", + " |\u003e Model.estimateParameter \"β\" noConstraints 0.01 1.00\n", + " |\u003e Model.estimateParameter \"κ\" noConstraints 0.01 1.00 \n", + " |\u003e Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \"mass\" ])\n", + " |\u003e Model.compile\n", + "\n", + "let engine = \n", + " Bristlecone.mkContinuous\n", + " |\u003e Bristlecone.withCustomOptimisation (Optimisation.Amoeba.swarm 5 20 Optimisation.Amoeba.Solver.Default)\n", + "\n", + "let testSettings = Bristlecone.Test.TestSettings\u003cfloat\u003e.Default\n", + "let testResult = Bristlecone.testModel engine testSettings hypothesis\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "In the above snippet, a von Bertalanffy growth model is defined as a hypothesis to test. We then create an `EstimationEngine`, which defines the methodology for model-fitting. In Bristlecone, an `EstimationEngine` is created and customised using the F# forward pipe operator (for R users this may be familiar; this concept was adapted into the dplyr %\u0026gt;% operator). The call to `testModel` generates random test data, and assesses whether the model-fitting method can accurately estimate known parameters.\n", + "\n", + "## Samples \u0026amp; documentation\n", + "\n", + "An API reference is automatically generated from XML comments in the library implementation.\n", + "\n", + "In addition, this documentation includes step-by-step example analyses. Each analysis may be downloaded\n", + "as an F# script or Jupyter notebook using the buttons at the top of each example page.\n", + "\n", + "* [The predator-prey example](examples/predator-prey.html) covers basic model-fitting with Bristlecone.\n", + " \n", + "\n", + "* [The shrub-resource example](example/shrub-resource.html) is a more\n", + "comprehensive example that covers model-fitting and model-selection (MFMS) with Bristlecone.\n", + " \n", + "\n", + "* The [API Reference](reference/index.html) contains automatically generated documentation for all types, modules\n", + "and functions in the library. This includes additional brief samples on using most of the\n", + "functions.\n", + " \n", + "\n", + "## Contributing and copyright\n", + "\n", + "The project is hosted on [GitHub](https://github.com/AndrewIOM/Bristlecone) where you can [report issues](https://github.com/AndrewIOM/Bristlecone/issues), fork\n", + "the project and submit pull requests. If you\u0027re adding a new public API, please also\n", + "consider adding [samples](https://github.com/AndrewIOM/Bristlecone/tree/master/docs/content) that can be turned into a documentation. You might\n", + "also want to read the [library design notes](https://github.com/AndrewIOM/Bristlecone/blob/master/README.md) to understand how it works.\n", + "\n", + "The library is available under an MIT license, which allows modification and\n", + "redistribution for both commercial and non-commercial purposes. For more information see the\n", + "[License file](https://github.com/AndrewIOM/Bristlecone/blob/master/LICENSE) in the GitHub repository.\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/index.json b/index.json new file mode 100644 index 0000000..5c92db4 --- /dev/null +++ b/index.json @@ -0,0 +1 @@ +[{"uri":"https://acm.im/bristlecone/reference/bristlecone.html","title":"Bristlecone","content":"Bristlecone \nConditioning \nDiagnostics \nEstimationEngine \nLanguage \nList \nListExtensions \nMap \nModelSelection \nModelSystem \nObjective \nParameter \nPositiveInt \nRealTimeSpan \nResult \nSeq \nShortCode \nSolver \nTest \nTime \nPositiveInt \nRealTimeSpan \nBristlecone","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data.html","title":"Bristlecone.Data","content":"Confidence \nConfig \nConvergence \nEstimationResult \nMLE \nModelSelection \nSeries \nTrace \nPlantIndividual","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro.html","title":"Bristlecone.Dendro","content":"EnvironmentalVariables \nJulianDate \nPlantIndividual \nSunrise \nmm \nyear","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration.html","title":"Bristlecone.Integration","content":"Base \nMathNet \nOslo \nSimple","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging.html","title":"Bristlecone.Logging","content":"Console \nLogEvent \nModelFitState \nRHelper \nRealTimeTrace \nDevice","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modellibrary.html","title":"Bristlecone.ModelLibrary","content":"Likelihood","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation.html","title":"Bristlecone.Optimisation","content":"Amoeba \nEndConditions \nMonteCarlo \nNone \nOptimisationError","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval.html","title":"Bristlecone.Optimisation.ConfidenceInterval","content":"Bounds \nProfileLikelihood \nConfidenceInterval \nInterval \nOptimisationEventStash","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics.html","title":"Bristlecone.Statistics","content":"Convergence \nDistributions \nInterpolate \nRegression \nRootFinding \nTrendAnalysis","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow.html","title":"Bristlecone.Workflow","content":"Orchestration","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html","title":"Bristlecone","content":"Bristlecone \n \nBristlecone.Fit \nFit \nBristlecone.Parallel \nParallel \nBristlecone.mkDiscrete \nmkDiscrete \nBristlecone.mkContinuous \nmkContinuous \nBristlecone.withOutput \nwithOutput \nBristlecone.withSeed \nwithSeed \nBristlecone.withContinuousTime \nwithContinuousTime \nBristlecone.withConditioning \nwithConditioning \nBristlecone.withTunedMCMC \nwithTunedMCMC \nBristlecone.withGradientDescent \nwithGradientDescent \nBristlecone.withCustomOptimisation \nwithCustomOptimisation \nBristlecone.fit \nfit \nBristlecone.testModel \ntestModel \nBristlecone.bootstrap \nbootstrap \nBristlecone.oneStepAhead \noneStepAhead","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#mkDiscrete","title":"Bristlecone.mkDiscrete","content":"Bristlecone.mkDiscrete \nmkDiscrete \n A standard estimation engine using a random-walk monte carlo optimiser.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#mkContinuous","title":"Bristlecone.mkContinuous","content":"Bristlecone.mkContinuous \nmkContinuous \n A standard \u0060EstimationEngine\u0060 for ordinary differential equation models.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#withOutput","title":"Bristlecone.withOutput","content":"Bristlecone.withOutput \nwithOutput \n Add a writer","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#withSeed","title":"Bristlecone.withSeed","content":"Bristlecone.withSeed \nwithSeed \n Use a mersenne twister random number generator \n with a specific seed.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#withContinuousTime","title":"Bristlecone.withContinuousTime","content":"Bristlecone.withContinuousTime \nwithContinuousTime \n Use a custom integration method","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#withConditioning","title":"Bristlecone.withConditioning","content":"Bristlecone.withConditioning \nwithConditioning \n Choose how the start point is chosen when solving the model system","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#withTunedMCMC","title":"Bristlecone.withTunedMCMC","content":"Bristlecone.withTunedMCMC \nwithTunedMCMC \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#withGradientDescent","title":"Bristlecone.withGradientDescent","content":"Bristlecone.withGradientDescent \nwithGradientDescent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#withCustomOptimisation","title":"Bristlecone.withCustomOptimisation","content":"Bristlecone.withCustomOptimisation \nwithCustomOptimisation \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#fit","title":"Bristlecone.fit","content":"Bristlecone.fit \nfit \n\n Fit a time-series model to data.\n\n Please note: it is strongly recommended that you test that the given \u0060EstimationEngine\u0060\n can correctly identify known parameters for your model. Refer to the \u0060Bristlecone.testModel\u0060\n function, which can be used to generate known data and complete this process.\n ","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#testModel","title":"Bristlecone.testModel","content":"Bristlecone.testModel \ntestModel \n\u003Cpre\u003E **Description**\n Test that the specified estimation engine can correctly estimate known parameters. Random parameter sets are generated from the given model system.\n **Parameters**\n * \u0060model\u0060 - a \u0060ModelSystem\u0060 of equations and parameters\n * \u0060testSettings\u0060 - settings\n * \u0060engine\u0060 - an \u0060EstimationEngine\u0060\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#bootstrap","title":"Bristlecone.bootstrap","content":"Bristlecone.bootstrap \nbootstrap \n\u003Cpre\u003E **Description**\n Repeat a model fit many times, removing a single data point at random each time.\n **Parameters**\n * \u0060engine\u0060 - parameter of type \u0060EstimationEngine\u003Cfloat,float\u003E\u0060\n * \u0060iterations\u0060 - parameter of type \u0060int\u0060\n * \u0060burnin\u0060 - parameter of type \u0060int\u0060\n * \u0060bootstrapCount\u0060 - parameter of type \u0060int\u0060\n * \u0060hypothesis\u0060 - parameter of type \u0060ModelSystem\u0060\n * \u0060identifier\u0060 - parameter of type \u0060ShortCode\u0060\n * \u0060series\u0060 - parameter of type \u0060CodedMap\u003CTimeSeries\u003Cfloat\u003E\u003E\u0060\n\n **Output Type**\n * \u0060EstimationResult list\u0060\n\n **Exceptions**\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone.html#oneStepAhead","title":"Bristlecone.oneStepAhead","content":"Bristlecone.oneStepAhead \noneStepAhead \n \u0022How good am I at predicting the next data point\u0022?","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-fit.html","title":"Fit","content":"Fit \n \nFit.observationsToCommonTimeFrame \nobservationsToCommonTimeFrame \nFit.environmentDataToCommonTimeFrame \nenvironmentDataToCommonTimeFrame \nFit.exactSubsetOf \nexactSubsetOf \nFit.t0 \nt0","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-fit.html#observationsToCommonTimeFrame","title":"Fit.observationsToCommonTimeFrame","content":"Fit.observationsToCommonTimeFrame \nobservationsToCommonTimeFrame \n Places a map of \u0060TimeSeries\u0060 into a \u0060TimeFrame\u0060 that has data\n that shares a common timeline. If no timeline is shared, returns\n an \u0060Error\u0060.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-fit.html#environmentDataToCommonTimeFrame","title":"Fit.environmentDataToCommonTimeFrame","content":"Fit.environmentDataToCommonTimeFrame \nenvironmentDataToCommonTimeFrame \n Finds environmental data in a timeseries map (i.e. those datasets that are not\n dynamic variables or measures), and constructs a common \u0060TimeFrame\u0060.\n Returns None if there is no environmental data.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-fit.html#exactSubsetOf","title":"Fit.exactSubsetOf","content":"Fit.exactSubsetOf \nexactSubsetOf \n TODO make function to check if time-series one is a subset of\n time-series two.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-fit.html#t0","title":"Fit.t0","content":"Fit.t0 \nt0 \n Returns a tuple of the start point (t0) and the\n subsequent time-series (t1 .. tn).","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-parallel.html","title":"Parallel","content":"Parallel \n \nParallel.fit \nfit","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-parallel.html#fit","title":"Parallel.fit","content":"Parallel.fit \nfit \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-conditioning.html","title":"Conditioning","content":"Conditioning \n \nConditioning.Conditioning\u003C\u0027a\u003E \nConditioning\u003C\u0027a\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-conditioning-conditioning-1.html","title":"Conditioning\u003C\u0027a\u003E","content":"Conditioning\u003C\u0027a\u003E \n \nConditioning\u003C\u0027a\u003E.NoConditioning \nNoConditioning \nConditioning\u003C\u0027a\u003E.RepeatFirstDataPoint \nRepeatFirstDataPoint \nConditioning\u003C\u0027a\u003E.Custom \nCustom","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-conditioning-conditioning-1.html#NoConditioning","title":"Conditioning\u003C\u0027a\u003E.NoConditioning","content":"Conditioning\u003C\u0027a\u003E.NoConditioning \nNoConditioning \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-conditioning-conditioning-1.html#RepeatFirstDataPoint","title":"Conditioning\u003C\u0027a\u003E.RepeatFirstDataPoint","content":"Conditioning\u003C\u0027a\u003E.RepeatFirstDataPoint \nRepeatFirstDataPoint \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-conditioning-conditioning-1.html#Custom","title":"Conditioning\u003C\u0027a\u003E.Custom","content":"Conditioning\u003C\u0027a\u003E.Custom \nCustom \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics.html","title":"Diagnostics","content":"Diagnostics \n\u003Cpre\u003EDiagnostic techniques for determining the suitability of\n results obtained with Bristlecone.\u003C/pre\u003E \nDiagnostics.Convergence \nConvergence \nDiagnostics.ModelComponents \nModelComponents","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence.html","title":"Convergence","content":"Convergence \n Convergence diagnostics for monte-carlo markov chain (MCMC) analyses. \nConvergence.ConvergenceStatistic \nConvergenceStatistic \nConvergence.gelmanRubin \ngelmanRubin \nConvergence.gelmanRubinAll \ngelmanRubinAll","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence.html#gelmanRubin","title":"Convergence.gelmanRubin","content":"Convergence.gelmanRubin \ngelmanRubin \n Calculate the Gelman-Rubin statistic for each parameter in the given\n \u0060ResultSet\u0060. The statistic tends downwards to one, with one indicating\n perfect convergence between all chains.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence.html#gelmanRubinAll","title":"Convergence.gelmanRubinAll","content":"Convergence.gelmanRubinAll \ngelmanRubinAll \n Calculate the Gelman-Rubin statistic for each parameter in all of the\n given \u0060ResultSet\u0060. The statistic tends downwards to one, with one indicating\n perfect convergence between all chains.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence-convergencestatistic.html","title":"ConvergenceStatistic","content":"ConvergenceStatistic \n A per-parameter convergence statistic. The statistic used is given in \u0060StatisticName\u0060. \nConvergenceStatistic.Subject \nSubject \nConvergenceStatistic.HypothesisId \nHypothesisId \nConvergenceStatistic.Parameter \nParameter \nConvergenceStatistic.StatisticName \nStatisticName \nConvergenceStatistic.StatisticValue \nStatisticValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence-convergencestatistic.html#Subject","title":"ConvergenceStatistic.Subject","content":"ConvergenceStatistic.Subject \nSubject \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence-convergencestatistic.html#HypothesisId","title":"ConvergenceStatistic.HypothesisId","content":"ConvergenceStatistic.HypothesisId \nHypothesisId \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence-convergencestatistic.html#Parameter","title":"ConvergenceStatistic.Parameter","content":"ConvergenceStatistic.Parameter \nParameter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence-convergencestatistic.html#StatisticName","title":"ConvergenceStatistic.StatisticName","content":"ConvergenceStatistic.StatisticName \nStatisticName \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-convergence-convergencestatistic.html#StatisticValue","title":"ConvergenceStatistic.StatisticValue","content":"ConvergenceStatistic.StatisticValue \nStatisticValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents.html","title":"ModelComponents","content":"ModelComponents \n Logging functions to output the internal dynamics of model systems. \nModelComponents.ComponentLogger\u003C\u0027data\u003E \nComponentLogger\u003C\u0027data\u003E \nModelComponents.IComponentLogger\u003C\u0027data\u003E \nIComponentLogger\u003C\u0027data\u003E \nModelComponents.PassThrough\u003C\u0027data\u003E \nPassThrough\u003C\u0027data\u003E \nModelComponents.calculateComponents \ncalculateComponents","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents.html#calculateComponents","title":"ModelComponents.calculateComponents","content":"ModelComponents.calculateComponents \ncalculateComponents \n Log out components specified in a model by disabling optimisation.\n The model will only be computed once.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents-componentlogger-1.html","title":"ComponentLogger\u003C\u0027data\u003E","content":"ComponentLogger\u003C\u0027data\u003E \n A component logger stores the value at each time t for each\n component specified by a \u0060componentId\u0060. \nComponentLogger\u003C\u0027data\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents-componentlogger-1.html#\u0060\u0060.ctor\u0060\u0060","title":"ComponentLogger\u003C\u0027data\u003E.\u0060\u0060.ctor\u0060\u0060","content":"ComponentLogger\u003C\u0027data\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents-icomponentlogger-1.html","title":"IComponentLogger\u003C\u0027data\u003E","content":"IComponentLogger\u003C\u0027data\u003E \n \nIComponentLogger\u003C\u0027data\u003E.GetAll \nGetAll \nIComponentLogger\u003C\u0027data\u003E.StoreValue \nStoreValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents-icomponentlogger-1.html#GetAll","title":"IComponentLogger\u003C\u0027data\u003E.GetAll","content":"IComponentLogger\u003C\u0027data\u003E.GetAll \nGetAll \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents-icomponentlogger-1.html#StoreValue","title":"IComponentLogger\u003C\u0027data\u003E.StoreValue","content":"IComponentLogger\u003C\u0027data\u003E.StoreValue \nStoreValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents-passthrough-1.html","title":"PassThrough\u003C\u0027data\u003E","content":"PassThrough\u003C\u0027data\u003E \n A component logger that does not store any values. \nPassThrough\u003C\u0027data\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-diagnostics-modelcomponents-passthrough-1.html#\u0060\u0060.ctor\u0060\u0060","title":"PassThrough\u003C\u0027data\u003E.\u0060\u0060.ctor\u0060\u0060","content":"PassThrough\u003C\u0027data\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine.html","title":"EstimationEngine","content":"EstimationEngine \n \nEstimationEngine.Domain \nDomain \nEstimationEngine.EndCondition\u003C\u0027a\u003E \nEndCondition\u003C\u0027a\u003E \nEstimationEngine.EstimationEngine\u003C\u0027data, \u0027time\u003E \nEstimationEngine\u003C\u0027data, \u0027time\u003E \nEstimationEngine.Integrate\u003C\u0027data, \u0027time\u003E \nIntegrate\u003C\u0027data, \u0027time\u003E \nEstimationEngine.ODE \nODE \nEstimationEngine.Objective\u003C\u0027a\u003E \nObjective\u003C\u0027a\u003E \nEstimationEngine.Optimise\u003C\u0027data\u003E \nOptimise\u003C\u0027data\u003E \nEstimationEngine.Optimiser\u003C\u0027data\u003E \nOptimiser\u003C\u0027data\u003E \nEstimationEngine.Point\u003C\u0027a\u003E \nPoint\u003C\u0027a\u003E \nEstimationEngine.State \nState \nEstimationEngine.Time \nTime \nEstimationEngine.TimeMode\u003C\u0027data, \u0027time\u003E \nTimeMode\u003C\u0027data, \u0027time\u003E \nEstimationEngine.WriteOut \nWriteOut","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-domain.html","title":"Domain","content":"Domain \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-endcondition-1.html","title":"EndCondition\u003C\u0027a\u003E","content":"EndCondition\u003C\u0027a\u003E \n Determines if the end has been reached based on a list\n of tupled Solutions with their iteration number.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-estimationengine-2.html","title":"EstimationEngine\u003C\u0027data, \u0027time\u003E","content":"EstimationEngine\u003C\u0027data, \u0027time\u003E \n \nEstimationEngine\u003C\u0027data, \u0027time\u003E.TimeHandling \nTimeHandling \nEstimationEngine\u003C\u0027data, \u0027time\u003E.OptimiseWith \nOptimiseWith \nEstimationEngine\u003C\u0027data, \u0027time\u003E.Conditioning \nConditioning \nEstimationEngine\u003C\u0027data, \u0027time\u003E.LogTo \nLogTo \nEstimationEngine\u003C\u0027data, \u0027time\u003E.Random \nRandom","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-estimationengine-2.html#TimeHandling","title":"EstimationEngine\u003C\u0027data, \u0027time\u003E.TimeHandling","content":"EstimationEngine\u003C\u0027data, \u0027time\u003E.TimeHandling \nTimeHandling \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-estimationengine-2.html#OptimiseWith","title":"EstimationEngine\u003C\u0027data, \u0027time\u003E.OptimiseWith","content":"EstimationEngine\u003C\u0027data, \u0027time\u003E.OptimiseWith \nOptimiseWith \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-estimationengine-2.html#Conditioning","title":"EstimationEngine\u003C\u0027data, \u0027time\u003E.Conditioning","content":"EstimationEngine\u003C\u0027data, \u0027time\u003E.Conditioning \nConditioning \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-estimationengine-2.html#LogTo","title":"EstimationEngine\u003C\u0027data, \u0027time\u003E.LogTo","content":"EstimationEngine\u003C\u0027data, \u0027time\u003E.LogTo \nLogTo \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-estimationengine-2.html#Random","title":"EstimationEngine\u003C\u0027data, \u0027time\u003E.Random","content":"EstimationEngine\u003C\u0027data, \u0027time\u003E.Random \nRandom \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-integrate-2.html","title":"Integrate\u003C\u0027data, \u0027time\u003E","content":"Integrate\u003C\u0027data, \u0027time\u003E \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-ode.html","title":"ODE","content":"ODE \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-objective-1.html","title":"Objective\u003C\u0027a\u003E","content":"Objective\u003C\u0027a\u003E \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-optimise-1.html","title":"Optimise\u003C\u0027data\u003E","content":"Optimise\u003C\u0027data\u003E \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-optimiser-1.html","title":"Optimiser\u003C\u0027data\u003E","content":"Optimiser\u003C\u0027data\u003E \n An \u0060Optimiser\u0060 is an optimisation algorithm that may work either\n in \u0027transformed\u0027 parameter space (where parameter constraints are\n automatically handled) or in \u0027detatched\u0027 space (where the optimisation\n algorithm is responsible for respecting parameter constraints). \nOptimiser\u003C\u0027data\u003E.InTransformedSpace \nInTransformedSpace \nOptimiser\u003C\u0027data\u003E.InDetachedSpace \nInDetachedSpace","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-optimiser-1.html#InTransformedSpace","title":"Optimiser\u003C\u0027data\u003E.InTransformedSpace","content":"Optimiser\u003C\u0027data\u003E.InTransformedSpace \nInTransformedSpace \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-optimiser-1.html#InDetachedSpace","title":"Optimiser\u003C\u0027data\u003E.InDetachedSpace","content":"Optimiser\u003C\u0027data\u003E.InDetachedSpace \nInDetachedSpace \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-point-1.html","title":"Point\u003C\u0027a\u003E","content":"Point\u003C\u0027a\u003E \n Point is generic to allow choice of number precision","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-state.html","title":"State","content":"State \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-time.html","title":"Time","content":"Time \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-timemode-2.html","title":"TimeMode\u003C\u0027data, \u0027time\u003E","content":"TimeMode\u003C\u0027data, \u0027time\u003E \n \nTimeMode\u003C\u0027data, \u0027time\u003E.Discrete \nDiscrete \nTimeMode\u003C\u0027data, \u0027time\u003E.Continuous \nContinuous","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-timemode-2.html#Discrete","title":"TimeMode\u003C\u0027data, \u0027time\u003E.Discrete","content":"TimeMode\u003C\u0027data, \u0027time\u003E.Discrete \nDiscrete \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-timemode-2.html#Continuous","title":"TimeMode\u003C\u0027data, \u0027time\u003E.Continuous","content":"TimeMode\u003C\u0027data, \u0027time\u003E.Continuous \nContinuous \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-estimationengine-writeout.html","title":"WriteOut","content":"WriteOut \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html","title":"Language","content":"Language \n An F# Domain Specific Language (DSL) for scripting with\n Bristlecone. \nLanguage.ComputableFragment \nComputableFragment \nLanguage.ExpressionParser \nExpressionParser \nLanguage.Hypotheses \nHypotheses \nLanguage.Model \nModel \nLanguage.ModelBuilder \nModelBuilder \nLanguage.Test \nTest \nLanguage.Writer \nWriter \nLanguage.ArbitraryRequirement \nArbitraryRequirement \nLanguage.ModelExpression \nModelExpression \nLanguage.PluggableComponent\u003C\u0027a\u003E \nPluggableComponent\u003C\u0027a\u003E \nLanguage.parameter \nparameter \nLanguage.code \ncode \nLanguage.years \nyears \nLanguage.months \nmonths \nLanguage.days \ndays \nLanguage.lookup \nlookup \nLanguage.compute \ncompute \nLanguage.noConstraints \nnoConstraints \nLanguage.notNegative \nnotNegative \nLanguage.subComponent \nsubComponent \nLanguage.modelComponent \nmodelComponent \nLanguage.estimateParameter \nestimateParameter \nLanguage.(|NotEmptyList|_|) \n(|NotEmptyList|_|)","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#parameter","title":"Language.parameter","content":"Language.parameter \nparameter \n Define an estimatable parameter for a Bristlecone model.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#code","title":"Language.code","content":"Language.code \ncode \n A short code representation of an identifier for a parameter,\n model equation, or other model component.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#years","title":"Language.years","content":"Language.years \nyears \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#months","title":"Language.months","content":"Language.months \nmonths \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#days","title":"Language.days","content":"Language.days \ndays \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#lookup","title":"Language.lookup","content":"Language.lookup \nlookup \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#compute","title":"Language.compute","content":"Language.compute \ncompute \n Computes a \u0060ModelExpression\u0060 given the current time, value,\n environment, and parameter pool.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#noConstraints","title":"Language.noConstraints","content":"Language.noConstraints \nnoConstraints \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#notNegative","title":"Language.notNegative","content":"Language.notNegative \nnotNegative \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#subComponent","title":"Language.subComponent","content":"Language.subComponent \nsubComponent \n Creates a nested component that can be inserted into a base model.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#modelComponent","title":"Language.modelComponent","content":"Language.modelComponent \nmodelComponent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#estimateParameter","title":"Language.estimateParameter","content":"Language.estimateParameter \nestimateParameter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language.html#(|NotEmptyList|_|)","title":"Language.(|NotEmptyList|_|)","content":"Language.(|NotEmptyList|_|) \n(|NotEmptyList|_|) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-computablefragment.html","title":"ComputableFragment","content":"ComputableFragment \n Allows common F# functions to use Bristlecone model expressions. \nComputableFragment.ComputableFragment \nComputableFragment \nComputableFragment.Compute \nCompute \nComputableFragment.apply \napply \nComputableFragment.applyAgain \napplyAgain \nComputableFragment.asBristleconeFunction \nasBristleconeFunction","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-computablefragment.html#apply","title":"ComputableFragment.apply","content":"ComputableFragment.apply \napply \n Apply a Bristlecone model expression to a custom arbitrary function.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-computablefragment.html#applyAgain","title":"ComputableFragment.applyAgain","content":"ComputableFragment.applyAgain \napplyAgain \n Apply additional parameters as Bristlecone expressions to an arbitrary function.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-computablefragment.html#asBristleconeFunction","title":"ComputableFragment.asBristleconeFunction","content":"ComputableFragment.asBristleconeFunction \nasBristleconeFunction \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-computablefragment-computablefragment.html","title":"ComputableFragment","content":"ComputableFragment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-computablefragment-compute.html","title":"Compute","content":"Compute \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-expressionparser.html","title":"ExpressionParser","content":"ExpressionParser \n \nExpressionParser.Requirement \nRequirement \nExpressionParser.requirements \nrequirements","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-expressionparser.html#requirements","title":"ExpressionParser.requirements","content":"ExpressionParser.requirements \nrequirements \n Determines the parameter and environmental data requirements of the defined model expression.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-expressionparser-requirement.html","title":"Requirement","content":"Requirement \n \nRequirement.ParameterRequirement \nParameterRequirement \nRequirement.EnvironmentRequirement \nEnvironmentRequirement","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-expressionparser-requirement.html#ParameterRequirement","title":"Requirement.ParameterRequirement","content":"Requirement.ParameterRequirement \nParameterRequirement \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-expressionparser-requirement.html#EnvironmentRequirement","title":"Requirement.EnvironmentRequirement","content":"Requirement.EnvironmentRequirement \nEnvironmentRequirement \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses.html","title":"Hypotheses","content":"Hypotheses \n \nHypotheses.ComponentName \nComponentName \nHypotheses.createFromComponent \ncreateFromComponent \nHypotheses.useAnother \nuseAnother \nHypotheses.useAnotherWithName \nuseAnotherWithName \nHypotheses.compile \ncompile","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses.html#createFromComponent","title":"Hypotheses.createFromComponent","content":"Hypotheses.createFromComponent \ncreateFromComponent \n Implement a component where a model system requires one. A component is\n a part of a model that may be varied, for example between competing\n hypotheses.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses.html#useAnother","title":"Hypotheses.useAnother","content":"Hypotheses.useAnother \nuseAnother \n Implement a second or further component on a model system where one is\n still required.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses.html#useAnotherWithName","title":"Hypotheses.useAnotherWithName","content":"Hypotheses.useAnotherWithName \nuseAnotherWithName \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses.html#compile","title":"Hypotheses.compile","content":"Hypotheses.compile \ncompile \n Compiles a suite of competing model hypotheses based on the given components.\n The compilation includes only the required parameters in each model hypothesis,\n and combines all labels into a single model identifier.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses-componentname.html","title":"ComponentName","content":"ComponentName \n \nComponentName.Reference \nReference \nComponentName.Component \nComponent \nComponentName.Implementation \nImplementation","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses-componentname.html#Reference","title":"ComponentName.Reference","content":"ComponentName.Reference \nReference \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses-componentname.html#Component","title":"ComponentName.Component","content":"ComponentName.Component \nComponent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-hypotheses-componentname.html#Implementation","title":"ComponentName.Implementation","content":"ComponentName.Implementation \nImplementation \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-model.html","title":"Model","content":"Model \n Terms for scaffolding a model system for use with Bristlecone. \nModel.empty \nempty \nModel.addEquation \naddEquation \nModel.estimateParameter \nestimateParameter \nModel.includeMeasure \nincludeMeasure \nModel.useLikelihoodFunction \nuseLikelihoodFunction \nModel.compile \ncompile","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-model.html#empty","title":"Model.empty","content":"Model.empty \nempty \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-model.html#addEquation","title":"Model.addEquation","content":"Model.addEquation \naddEquation \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-model.html#estimateParameter","title":"Model.estimateParameter","content":"Model.estimateParameter \nestimateParameter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-model.html#includeMeasure","title":"Model.includeMeasure","content":"Model.includeMeasure \nincludeMeasure \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-model.html#useLikelihoodFunction","title":"Model.useLikelihoodFunction","content":"Model.useLikelihoodFunction \nuseLikelihoodFunction \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-model.html#compile","title":"Model.compile","content":"Model.compile \ncompile \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder.html","title":"ModelBuilder","content":"ModelBuilder \n Scaffolds a \u0060ModelSystem\u0060 for fitting with Bristlecone. \nModelBuilder.ModelBuilder \nModelBuilder \nModelBuilder.ModelFragment \nModelFragment \nModelBuilder.create \ncreate \nModelBuilder.add \nadd \nModelBuilder.compile \ncompile","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder.html#create","title":"ModelBuilder.create","content":"ModelBuilder.create \ncreate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder.html#add","title":"ModelBuilder.add","content":"ModelBuilder.add \nadd \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder.html#compile","title":"ModelBuilder.compile","content":"ModelBuilder.compile \ncompile \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder-modelbuilder.html","title":"ModelBuilder","content":"ModelBuilder \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder-modelfragment.html","title":"ModelFragment","content":"ModelFragment \n \nModelFragment.EquationFragment \nEquationFragment \nModelFragment.ParameterFragment \nParameterFragment \nModelFragment.LikelihoodFragment \nLikelihoodFragment \nModelFragment.MeasureFragment \nMeasureFragment","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder-modelfragment.html#EquationFragment","title":"ModelFragment.EquationFragment","content":"ModelFragment.EquationFragment \nEquationFragment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder-modelfragment.html#ParameterFragment","title":"ModelFragment.ParameterFragment","content":"ModelFragment.ParameterFragment \nParameterFragment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder-modelfragment.html#LikelihoodFragment","title":"ModelFragment.LikelihoodFragment","content":"ModelFragment.LikelihoodFragment \nLikelihoodFragment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelbuilder-modelfragment.html#MeasureFragment","title":"ModelFragment.MeasureFragment","content":"ModelFragment.MeasureFragment \nMeasureFragment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-test.html","title":"Test","content":"Test \n Terms for designing tests for model systems. \nTest.defaultSettings \ndefaultSettings \nTest.withStartValue \nwithStartValue \nTest.run \nrun","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-test.html#defaultSettings","title":"Test.defaultSettings","content":"Test.defaultSettings \ndefaultSettings \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-test.html#withStartValue","title":"Test.withStartValue","content":"Test.withStartValue \nwithStartValue \n If the start value has already been set, it will be overwritten with the new value.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-test.html#run","title":"Test.run","content":"Test.run \nrun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-writer.html","title":"Writer","content":"Writer \n \nWriter.Writer\u003C\u0027a, \u0027L\u003E \nWriter\u003C\u0027a, \u0027L\u003E \nWriter.bind \nbind \nWriter.map \nmap \nWriter.run \nrun \nWriter.flatMap \nflatMap","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-writer.html#bind","title":"Writer.bind","content":"Writer.bind \nbind \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-writer.html#map","title":"Writer.map","content":"Writer.map \nmap \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-writer.html#run","title":"Writer.run","content":"Writer.run \nrun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-writer.html#flatMap","title":"Writer.flatMap","content":"Writer.flatMap \nflatMap \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-writer-writer-2.html","title":"Writer\u003C\u0027a, \u0027L\u003E","content":"Writer\u003C\u0027a, \u0027L\u003E \n \nWriter\u003C\u0027a, \u0027L\u003E.AWriter \nAWriter","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-writer-writer-2.html#AWriter","title":"Writer\u003C\u0027a, \u0027L\u003E.AWriter","content":"Writer\u003C\u0027a, \u0027L\u003E.AWriter \nAWriter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-arbitraryrequirement.html","title":"ArbitraryRequirement","content":"ArbitraryRequirement \n \nArbitraryRequirement.ArbitraryParameter \nArbitraryParameter \nArbitraryRequirement.ArbitraryEnvironment \nArbitraryEnvironment","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-arbitraryrequirement.html#ArbitraryParameter","title":"ArbitraryRequirement.ArbitraryParameter","content":"ArbitraryRequirement.ArbitraryParameter \nArbitraryParameter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-arbitraryrequirement.html#ArbitraryEnvironment","title":"ArbitraryRequirement.ArbitraryEnvironment","content":"ArbitraryRequirement.ArbitraryEnvironment \nArbitraryEnvironment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html","title":"ModelExpression","content":"ModelExpression \n A model or model fragment that can be interpreted to a mathematical\n expression by Bristlecone. \nModelExpression.Pow \nPow \nModelExpression.(\u002B) \n(\u002B) \nModelExpression.(/) \n(/) \nModelExpression.(%) \n(%) \nModelExpression.(*) \n(*) \nModelExpression.(-) \n(-) \nModelExpression.(~-) \n(~-) \nModelExpression.This \nThis \nModelExpression.Time \nTime \nModelExpression.Environment \nEnvironment \nModelExpression.Parameter \nParameter \nModelExpression.Constant \nConstant \nModelExpression.Add \nAdd \nModelExpression.Subtract \nSubtract \nModelExpression.Multiply \nMultiply \nModelExpression.Divide \nDivide \nModelExpression.Arbitrary \nArbitrary \nModelExpression.Mod \nMod \nModelExpression.Exponent \nExponent \nModelExpression.Conditional \nConditional \nModelExpression.Invalid \nInvalid","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Pow","title":"ModelExpression.Pow","content":"ModelExpression.Pow \nPow \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#(\u002B)","title":"ModelExpression.(\u002B)","content":"ModelExpression.(\u002B) \n(\u002B) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#(/)","title":"ModelExpression.(/)","content":"ModelExpression.(/) \n(/) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#(%)","title":"ModelExpression.(%)","content":"ModelExpression.(%) \n(%) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#(*)","title":"ModelExpression.(*)","content":"ModelExpression.(*) \n(*) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#(-)","title":"ModelExpression.(-)","content":"ModelExpression.(-) \n(-) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#(~-)","title":"ModelExpression.(~-)","content":"ModelExpression.(~-) \n(~-) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#This","title":"ModelExpression.This","content":"ModelExpression.This \nThis \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Time","title":"ModelExpression.Time","content":"ModelExpression.Time \nTime \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Environment","title":"ModelExpression.Environment","content":"ModelExpression.Environment \nEnvironment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Parameter","title":"ModelExpression.Parameter","content":"ModelExpression.Parameter \nParameter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Constant","title":"ModelExpression.Constant","content":"ModelExpression.Constant \nConstant \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Add","title":"ModelExpression.Add","content":"ModelExpression.Add \nAdd \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Subtract","title":"ModelExpression.Subtract","content":"ModelExpression.Subtract \nSubtract \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Multiply","title":"ModelExpression.Multiply","content":"ModelExpression.Multiply \nMultiply \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Divide","title":"ModelExpression.Divide","content":"ModelExpression.Divide \nDivide \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Arbitrary","title":"ModelExpression.Arbitrary","content":"ModelExpression.Arbitrary \nArbitrary \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Mod","title":"ModelExpression.Mod","content":"ModelExpression.Mod \nMod \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Exponent","title":"ModelExpression.Exponent","content":"ModelExpression.Exponent \nExponent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Conditional","title":"ModelExpression.Conditional","content":"ModelExpression.Conditional \nConditional \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-modelexpression.html#Invalid","title":"ModelExpression.Invalid","content":"ModelExpression.Invalid \nInvalid \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-pluggablecomponent-1.html","title":"PluggableComponent\u003C\u0027a\u003E","content":"PluggableComponent\u003C\u0027a\u003E \n \nPluggableComponent\u003C\u0027a\u003E.Parameters \nParameters \nPluggableComponent\u003C\u0027a\u003E.Expression \nExpression","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-pluggablecomponent-1.html#Parameters","title":"PluggableComponent\u003C\u0027a\u003E.Parameters","content":"PluggableComponent\u003C\u0027a\u003E.Parameters \nParameters \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-language-pluggablecomponent-1.html#Expression","title":"PluggableComponent\u003C\u0027a\u003E.Expression","content":"PluggableComponent\u003C\u0027a\u003E.Expression \nExpression \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-list.html","title":"List","content":"List \n \nList.remove \nremove \nList.combine6 \ncombine6 \nList.combine5 \ncombine5 \nList.combine4 \ncombine4 \nList.combine3 \ncombine3 \nList.flip \nflip","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-list.html#remove","title":"List.remove","content":"List.remove \nremove \n Remove a single element from a list l at index i.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-list.html#combine6","title":"List.combine6","content":"List.combine6 \ncombine6 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-list.html#combine5","title":"List.combine5","content":"List.combine5 \ncombine5 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-list.html#combine4","title":"List.combine4","content":"List.combine4 \ncombine4 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-list.html#combine3","title":"List.combine3","content":"List.combine3 \ncombine3 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-list.html#flip","title":"List.flip","content":"List.flip \nflip \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-listextensions.html","title":"ListExtensions","content":"ListExtensions \n \nListExtensions.(|Single|Empty|AllIdentical|Neither|) \n(|Single|Empty|AllIdentical|Neither|)","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-listextensions.html#(|Single|Empty|AllIdentical|Neither|)","title":"ListExtensions.(|Single|Empty|AllIdentical|Neither|)","content":"ListExtensions.(|Single|Empty|AllIdentical|Neither|) \n(|Single|Empty|AllIdentical|Neither|) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-map.html","title":"Map","content":"Map \n \nMap.merge \nmerge \nMap.tryFindBy \ntryFindBy \nMap.keys \nkeys","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-map.html#merge","title":"Map.merge","content":"Map.merge \nmerge \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-map.html#tryFindBy","title":"Map.tryFindBy","content":"Map.tryFindBy \ntryFindBy \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-map.html#keys","title":"Map.keys","content":"Map.keys \nkeys \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection.html","title":"ModelSelection","content":"ModelSelection \n \nModelSelection.Akaike \nAkaike \nModelSelection.ResultSet \nResultSet \nModelSelection.Result\u003C\u0027subject\u003E \nResult\u003C\u0027subject\u003E \nModelSelection.calculate \ncalculate \nModelSelection.weights \nweights","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection.html#calculate","title":"ModelSelection.calculate","content":"ModelSelection.calculate \ncalculate \n Given a list of model predictions, find the best MLE for each\n model * subject combination, calculate the weights for this set.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection.html#weights","title":"ModelSelection.weights","content":"ModelSelection.weights \nweights \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike.html","title":"Akaike","content":"Akaike \n Functions for conducting Akaike Information Criterion (AIC). \nAkaike.AkaikeWeight \nAkaikeWeight \nAkaike.aic \naic \nAkaike.aicc \naicc \nAkaike.akaikeWeights \nakaikeWeights","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike.html#aic","title":"Akaike.aic","content":"Akaike.aic \naic \n\u003Cpre\u003E**Description**\n The Akaike information criterion, a standardised index of model fit quality for models that have different numbers of parameters.\n**Parameters**\n * \u0060k\u0060 - The number of parameters within the model in question.\n * \u0060logLikelihood\u0060 - a \u0060float\u0060 representing the minimum log-likelihood achieved for the model in question.\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike.html#aicc","title":"Akaike.aicc","content":"Akaike.aicc \naicc \n\u003Cpre\u003E**Description**\n The Akaike information criterion, corrected for small sample sizes.\n It represents standardised index of model fit quality for models that have different numbers of parameters.\n**Assumptions**\n Your model must adhere to the following assumptions:\n - Univariate\n - Linear in parameters\n - Normally-distributed residuals\n**Parameters**\n * \u0060n\u0060 - The sample size\n * \u0060k\u0060 - The number of parameters within the model in question.\n * \u0060logLikelihood\u0060 - a \u0060float\u0060 representing the minimum log-likelihood achieved for the model in question.\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike.html#akaikeWeights","title":"Akaike.akaikeWeights","content":"Akaike.akaikeWeights \nakaikeWeights \n\u003Cpre\u003E **Description**\n Akaike weights for a set of model results.\n The weights can be directly interpreted as conditional probabilities for each model.\n\n **Output Type**\n * A \u0060seq\u003CEstimationResult * float\u003E\u0060 of estimation results paired to their Akaike weights.\n\n **Exceptions**\n * \u0060ArgumentException\u0060 - occurs when there are no observations within an estimation result.\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike-akaikeweight.html","title":"AkaikeWeight","content":"AkaikeWeight \n \nAkaikeWeight.Likelihood \nLikelihood \nAkaikeWeight.AIC \nAIC \nAkaikeWeight.AICc \nAICc \nAkaikeWeight.Weight \nWeight","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike-akaikeweight.html#Likelihood","title":"AkaikeWeight.Likelihood","content":"AkaikeWeight.Likelihood \nLikelihood \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike-akaikeweight.html#AIC","title":"AkaikeWeight.AIC","content":"AkaikeWeight.AIC \nAIC \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike-akaikeweight.html#AICc","title":"AkaikeWeight.AICc","content":"AkaikeWeight.AICc \nAICc \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-akaike-akaikeweight.html#Weight","title":"AkaikeWeight.Weight","content":"AkaikeWeight.Weight \nWeight \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-resultset.html","title":"ResultSet","content":"ResultSet \n Organises multiple hypotheses and multiple subjects into\n distinct analysis groups. \nResultSet.arrangeResultSets \narrangeResultSets","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-resultset.html#arrangeResultSets","title":"ResultSet.arrangeResultSets","content":"ResultSet.arrangeResultSets \narrangeResultSets \n Arrange estimation results into subject and hypothesis groups.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-result-1.html","title":"Result\u003C\u0027subject\u003E","content":"Result\u003C\u0027subject\u003E \n A record of an individual maximum likelihood estimate for\n a particular subject and hypothesis. \nResult\u003C\u0027subject\u003E.AnalysisId \nAnalysisId \nResult\u003C\u0027subject\u003E.Subject \nSubject \nResult\u003C\u0027subject\u003E.ModelId \nModelId \nResult\u003C\u0027subject\u003E.Estimate \nEstimate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-result-1.html#AnalysisId","title":"Result\u003C\u0027subject\u003E.AnalysisId","content":"Result\u003C\u0027subject\u003E.AnalysisId \nAnalysisId \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-result-1.html#Subject","title":"Result\u003C\u0027subject\u003E.Subject","content":"Result\u003C\u0027subject\u003E.Subject \nSubject \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-result-1.html#ModelId","title":"Result\u003C\u0027subject\u003E.ModelId","content":"Result\u003C\u0027subject\u003E.ModelId \nModelId \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelselection-result-1.html#Estimate","title":"Result\u003C\u0027subject\u003E.Estimate","content":"Result\u003C\u0027subject\u003E.Estimate \nEstimate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem.html","title":"ModelSystem","content":"ModelSystem \n Represents an ordinary differential equation model system and\n its likelihood as as objective function that may be optimised. \nModelSystem.EstimationResult \nEstimationResult \nModelSystem.FitSeries \nFitSeries \nModelSystem.FitValue \nFitValue \nModelSystem.LikelihoodFn \nLikelihoodFn \nModelSystem.MeasureEquation \nMeasureEquation \nModelSystem.ModelEquation \nModelEquation \nModelSystem.ModelSystem \nModelSystem \nModelSystem.ParameterValueAccessor \nParameterValueAccessor \nModelSystem.PredictedSeries \nPredictedSeries \nModelSystem.Response \nResponse \nModelSystem.Time \nTime","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-estimationresult.html","title":"EstimationResult","content":"EstimationResult \n An estimated model fit for a time-series model. \nEstimationResult.ResultId \nResultId \nEstimationResult.Likelihood \nLikelihood \nEstimationResult.Parameters \nParameters \nEstimationResult.Series \nSeries \nEstimationResult.Trace \nTrace \nEstimationResult.InternalDynamics \nInternalDynamics","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-estimationresult.html#ResultId","title":"EstimationResult.ResultId","content":"EstimationResult.ResultId \nResultId \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-estimationresult.html#Likelihood","title":"EstimationResult.Likelihood","content":"EstimationResult.Likelihood \nLikelihood \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-estimationresult.html#Parameters","title":"EstimationResult.Parameters","content":"EstimationResult.Parameters \nParameters \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-estimationresult.html#Series","title":"EstimationResult.Series","content":"EstimationResult.Series \nSeries \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-estimationresult.html#Trace","title":"EstimationResult.Trace","content":"EstimationResult.Trace \nTrace \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-estimationresult.html#InternalDynamics","title":"EstimationResult.InternalDynamics","content":"EstimationResult.InternalDynamics \nInternalDynamics \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitseries.html","title":"FitSeries","content":"FitSeries \n \nFitSeries.Resolution \nResolution \nFitSeries.Head \nHead \nFitSeries.TimeSteps \nTimeSteps \nFitSeries.Values \nValues \nFitSeries.StartDate \nStartDate \nFitSeries.Length \nLength","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitseries.html#Resolution","title":"FitSeries.Resolution","content":"FitSeries.Resolution \nResolution \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitseries.html#Head","title":"FitSeries.Head","content":"FitSeries.Head \nHead \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitseries.html#TimeSteps","title":"FitSeries.TimeSteps","content":"FitSeries.TimeSteps \nTimeSteps \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitseries.html#Values","title":"FitSeries.Values","content":"FitSeries.Values \nValues \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitseries.html#StartDate","title":"FitSeries.StartDate","content":"FitSeries.StartDate \nStartDate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitseries.html#Length","title":"FitSeries.Length","content":"FitSeries.Length \nLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitvalue.html","title":"FitValue","content":"FitValue \n \nFitValue.Fit \nFit \nFitValue.Obs \nObs","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitvalue.html#Fit","title":"FitValue.Fit","content":"FitValue.Fit \nFit \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-fitvalue.html#Obs","title":"FitValue.Obs","content":"FitValue.Obs \nObs \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-likelihoodfn.html","title":"LikelihoodFn","content":"LikelihoodFn \n A function that computes the likelihood of a set of parameters.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-measureequation.html","title":"MeasureEquation","content":"MeasureEquation \n A function that computes a measured system property given a\n current (time t) and previous (time t-1) system state.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-modelequation.html","title":"ModelEquation","content":"ModelEquation \n An ordinary differential equation that may require fixed or free parameters,\n the current time t, the current response value, and / or external environmental time series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-modelsystem.html","title":"ModelSystem","content":"ModelSystem \n \nModelSystem.Parameters \nParameters \nModelSystem.Equations \nEquations \nModelSystem.Measures \nMeasures \nModelSystem.Likelihood \nLikelihood","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-modelsystem.html#Parameters","title":"ModelSystem.Parameters","content":"ModelSystem.Parameters \nParameters \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-modelsystem.html#Equations","title":"ModelSystem.Equations","content":"ModelSystem.Equations \nEquations \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-modelsystem.html#Measures","title":"ModelSystem.Measures","content":"ModelSystem.Measures \nMeasures \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-modelsystem.html#Likelihood","title":"ModelSystem.Likelihood","content":"ModelSystem.Likelihood \nLikelihood \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-parametervalueaccessor.html","title":"ParameterValueAccessor","content":"ParameterValueAccessor \n A function that returns a parameter\u0027s current value by its name. \nParameterValueAccessor.Get \nGet \nParameterValueAccessor.ParameterValueAccessor \nParameterValueAccessor","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-parametervalueaccessor.html#Get","title":"ParameterValueAccessor.Get","content":"ParameterValueAccessor.Get \nGet \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-parametervalueaccessor.html#ParameterValueAccessor","title":"ParameterValueAccessor.ParameterValueAccessor","content":"ParameterValueAccessor.ParameterValueAccessor \nParameterValueAccessor \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-predictedseries.html","title":"PredictedSeries","content":"PredictedSeries \n Paired time-series representing the true and modelled time-series. \nPredictedSeries.Expected \nExpected \nPredictedSeries.Observed \nObserved","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-predictedseries.html#Expected","title":"PredictedSeries.Expected","content":"PredictedSeries.Expected \nExpected \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-predictedseries.html#Observed","title":"PredictedSeries.Observed","content":"PredictedSeries.Observed \nObserved \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-response.html","title":"Response","content":"Response \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modelsystem-time.html","title":"Time","content":"Time \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-objective.html","title":"Objective","content":"Objective \n Configures a single function that represents a model and its likelihood\n when fit to time-series data. \nObjective.parameteriseModel \nparameteriseModel \nObjective.pairObservationsToExpected \npairObservationsToExpected \nObjective.measure \nmeasure \nObjective.predict \npredict \nObjective.create \ncreate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-objective.html#parameteriseModel","title":"Objective.parameteriseModel","content":"Objective.parameteriseModel \nparameteriseModel \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-objective.html#pairObservationsToExpected","title":"Objective.pairObservationsToExpected","content":"Objective.pairObservationsToExpected \npairObservationsToExpected \n Pairs observed time series to predicted series for dynamic variables only.\n Environmental forcings and hidden variables are removed.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-objective.html#measure","title":"Objective.measure","content":"Objective.measure \nmeasure \n The system\u0027s \u0060Measures\u0060 are computed from the product of the solver.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-objective.html#predict","title":"Objective.predict","content":"Objective.predict \npredict \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-objective.html#create","title":"Objective.create","content":"Objective.create \ncreate \n Computes measurement variables and appends to expected data","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter.html","title":"Parameter","content":"Parameter \n \nParameter.Pool \nPool \nParameter.Constraint \nConstraint \nParameter.ConstraintMode \nConstraintMode \nParameter.Estimation \nEstimation \nParameter.Parameter \nParameter \nParameter.Pool \nPool \nParameter.create \ncreate \nParameter.isEstimated \nisEstimated \nParameter.getEstimate \ngetEstimate \nParameter.bounds \nbounds \nParameter.detatchConstraint \ndetatchConstraint","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter.html#create","title":"Parameter.create","content":"Parameter.create \ncreate \n Create an estimatable \u0060Parameter\u0060 that may be constrained or\n unconstrained to a certain value range. Bristlecone draws an\n initial value from the given bounds. To retrieve the estimated\n parameter value, use \u0060Parameter.finalise\u0060.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter.html#isEstimated","title":"Parameter.isEstimated","content":"Parameter.isEstimated \nisEstimated \n Determines if the parameter has been estimated or not.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter.html#getEstimate","title":"Parameter.getEstimate","content":"Parameter.getEstimate \ngetEstimate \n Retrieve the estimated parameter value for further analysis.\n Will only be \u0060Ok\u0060 if parameter has been estimated.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter.html#bounds","title":"Parameter.bounds","content":"Parameter.bounds \nbounds \n Bounds are always stored in a parameter in raw form.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter.html#detatchConstraint","title":"Parameter.detatchConstraint","content":"Parameter.detatchConstraint \ndetatchConstraint \n Detaches any constraints such that the parameter\u0027s\n transformed space equals normal space.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html","title":"Pool","content":"Pool \n Contains the \u0060ParameterPool\u0060 type, which represents the set of parameters\n to be estimated within an analysis. \nPool.ParameterPool \nParameterPool \nPool.toList \ntoList \nPool.hasParameter \nhasParameter \nPool.tryGetBoundsForEstimation \ntryGetBoundsForEstimation \nPool.count \ncount \nPool.fromList \nfromList \nPool.map \nmap \nPool.fromEstimated \nfromEstimated \nPool.detatchConstraints \ndetatchConstraints","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#toList","title":"Pool.toList","content":"Pool.toList \ntoList \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#hasParameter","title":"Pool.hasParameter","content":"Pool.hasParameter \nhasParameter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#tryGetBoundsForEstimation","title":"Pool.tryGetBoundsForEstimation","content":"Pool.tryGetBoundsForEstimation \ntryGetBoundsForEstimation \n Returns the starting bounds in transformed parameter space if\n the parameter has not been estimated. If the parameter has already\n been estimated, returns None.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#count","title":"Pool.count","content":"Pool.count \ncount \n The number of parameters in the Pool.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#fromList","title":"Pool.fromList","content":"Pool.fromList \nfromList \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#map","title":"Pool.map","content":"Pool.map \nmap \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#fromEstimated","title":"Pool.fromEstimated","content":"Pool.fromEstimated \nfromEstimated \n Create a Pool where all parameters are not estimated. The upper and\n lower bounds are set as the estimate from \u0060pool\u0060.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule.html#detatchConstraints","title":"Pool.detatchConstraints","content":"Pool.detatchConstraints \ndetatchConstraints \n Flips all parameters in the pool to work in \u0060Detached\u0060 mode rather\n than \u0060Transformed\u0060 mode.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule-parameterpool.html","title":"ParameterPool","content":"ParameterPool \n \nParameterPool.Pool \nPool","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-poolmodule-parameterpool.html#Pool","title":"ParameterPool.Pool","content":"ParameterPool.Pool \nPool \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-constraint.html","title":"Constraint","content":"Constraint \n Limits a \u0060Parameter\u0060 to certain value ranges by\n applying mathematical transformations when requested\n for \u0027optimisation space\u0027. \nConstraint.Unconstrained \nUnconstrained \nConstraint.PositiveOnly \nPositiveOnly","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-constraint.html#Unconstrained","title":"Constraint.Unconstrained","content":"Constraint.Unconstrained \nUnconstrained \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-constraint.html#PositiveOnly","title":"Constraint.PositiveOnly","content":"Constraint.PositiveOnly \nPositiveOnly \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-constraintmode.html","title":"ConstraintMode","content":"ConstraintMode \n The mode in which constraints are handled by the parameter.\n In \u0060Transform\u0060 mode, the parameter value is transformed\n when requested in \u0027optimisation space\u0027. Alternatively,\n in \u0060Detached\u0060 mode, the real parameter value is simply\n returned when requested in \u0027optimisation space\u0027. \nConstraintMode.Transform \nTransform \nConstraintMode.Detached \nDetached","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-constraintmode.html#Transform","title":"ConstraintMode.Transform","content":"ConstraintMode.Transform \nTransform \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-constraintmode.html#Detached","title":"ConstraintMode.Detached","content":"ConstraintMode.Detached \nDetached \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-estimation.html","title":"Estimation","content":"Estimation \n \nEstimation.NotEstimated \nNotEstimated \nEstimation.Estimated \nEstimated","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-estimation.html#NotEstimated","title":"Estimation.NotEstimated","content":"Estimation.NotEstimated \nNotEstimated \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-estimation.html#Estimated","title":"Estimation.Estimated","content":"Estimation.Estimated \nEstimated \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-parameter.html","title":"Parameter","content":"Parameter \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-parameter-pool.html","title":"Pool","content":"Pool \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-positiveintmodule.html","title":"PositiveInt","content":"PositiveInt \n \nPositiveInt.PositiveInt \nPositiveInt \nPositiveInt.create \ncreate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-positiveintmodule.html#create","title":"PositiveInt.create","content":"PositiveInt.create \ncreate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-positiveintmodule-positiveint.html","title":"PositiveInt","content":"PositiveInt \n \nPositiveInt.Value \nValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-positiveintmodule-positiveint.html#Value","title":"PositiveInt.Value","content":"PositiveInt.Value \nValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-realtimespanmodule.html","title":"RealTimeSpan","content":"RealTimeSpan \n \nRealTimeSpan.RealTimeSpan \nRealTimeSpan \nRealTimeSpan.create \ncreate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-realtimespanmodule.html#create","title":"RealTimeSpan.create","content":"RealTimeSpan.create \ncreate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-realtimespanmodule-realtimespan.html","title":"RealTimeSpan","content":"RealTimeSpan \n \nRealTimeSpan.Value \nValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-realtimespanmodule-realtimespan.html#Value","title":"RealTimeSpan.Value","content":"RealTimeSpan.Value \nValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html","title":"Result","content":"Result \n \nResult.ResultBuilder \nResultBuilder \nResult.result \nresult \nResult.succeed \nsucceed \nResult.fail \nfail \nResult.either \neither \nResult.bind \nbind \nResult.(\u003E\u003E=) \n(\u003E\u003E=) \nResult.switch \nswitch \nResult.map \nmap \nResult.tee \ntee \nResult.tryCatch \ntryCatch \nResult.doubleMap \ndoubleMap \nResult.plus \nplus \nResult.toErrorList \ntoErrorList \nResult.apply \napply \nResult.lift \nlift \nResult.(\u003C*\u003E) \n(\u003C*\u003E) \nResult.(\u003C!\u003E) \n(\u003C!\u003E) \nResult.retn \nretn \nResult.mapResult \nmapResult \nResult.ofOption \nofOption \nResult.toOption \ntoOption","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#result","title":"Result.result","content":"Result.result \nresult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#succeed","title":"Result.succeed","content":"Result.succeed \nsucceed \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#fail","title":"Result.fail","content":"Result.fail \nfail \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#either","title":"Result.either","content":"Result.either \neither \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#bind","title":"Result.bind","content":"Result.bind \nbind \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#(\u003E\u003E=)","title":"Result.(\u003E\u003E=)","content":"Result.(\u003E\u003E=) \n(\u003E\u003E=) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#switch","title":"Result.switch","content":"Result.switch \nswitch \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#map","title":"Result.map","content":"Result.map \nmap \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#tee","title":"Result.tee","content":"Result.tee \ntee \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#tryCatch","title":"Result.tryCatch","content":"Result.tryCatch \ntryCatch \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#doubleMap","title":"Result.doubleMap","content":"Result.doubleMap \ndoubleMap \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#plus","title":"Result.plus","content":"Result.plus \nplus \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#toErrorList","title":"Result.toErrorList","content":"Result.toErrorList \ntoErrorList \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#apply","title":"Result.apply","content":"Result.apply \napply \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#lift","title":"Result.lift","content":"Result.lift \nlift \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#(\u003C*\u003E)","title":"Result.(\u003C*\u003E)","content":"Result.(\u003C*\u003E) \n(\u003C*\u003E) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#(\u003C!\u003E)","title":"Result.(\u003C!\u003E)","content":"Result.(\u003C!\u003E) \n(\u003C!\u003E) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#retn","title":"Result.retn","content":"Result.retn \nretn \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#mapResult","title":"Result.mapResult","content":"Result.mapResult \nmapResult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#ofOption","title":"Result.ofOption","content":"Result.ofOption \nofOption \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result.html#toOption","title":"Result.toOption","content":"Result.toOption \ntoOption \n If OK, return Some, otherwise None.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html","title":"ResultBuilder","content":"ResultBuilder \n A result computation expression.\n Source: http://www.fssnip.net/7UJ/title/ResultBuilder-Computational-Expression \nResultBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nResultBuilder.Bind \nBind \nResultBuilder.Bind \nBind \nResultBuilder.Combine \nCombine \nResultBuilder.Delay \nDelay \nResultBuilder.Return \nReturn \nResultBuilder.ReturnFrom \nReturnFrom \nResultBuilder.Run \nRun \nResultBuilder.TryFinally \nTryFinally \nResultBuilder.TryWith \nTryWith \nResultBuilder.While \nWhile \nResultBuilder.Zero \nZero","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"ResultBuilder.\u0060\u0060.ctor\u0060\u0060","content":"ResultBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#Bind","title":"ResultBuilder.Bind","content":"ResultBuilder.Bind \nBind \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#Bind","title":"ResultBuilder.Bind","content":"ResultBuilder.Bind \nBind \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#Combine","title":"ResultBuilder.Combine","content":"ResultBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#Delay","title":"ResultBuilder.Delay","content":"ResultBuilder.Delay \nDelay \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#Return","title":"ResultBuilder.Return","content":"ResultBuilder.Return \nReturn \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#ReturnFrom","title":"ResultBuilder.ReturnFrom","content":"ResultBuilder.ReturnFrom \nReturnFrom \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#Run","title":"ResultBuilder.Run","content":"ResultBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#TryFinally","title":"ResultBuilder.TryFinally","content":"ResultBuilder.TryFinally \nTryFinally \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#TryWith","title":"ResultBuilder.TryWith","content":"ResultBuilder.TryWith \nTryWith \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#While","title":"ResultBuilder.While","content":"ResultBuilder.While \nWhile \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-result-resultbuilder.html#Zero","title":"ResultBuilder.Zero","content":"ResultBuilder.Zero \nZero \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-seq.html","title":"Seq","content":"Seq \n \nSeq.intersect \nintersect \nSeq.align \nalign \nSeq.everyNth \neveryNth \nSeq.keyMatch \nkeyMatch \nSeq.stddev \nstddev \nSeq.hasDuplicates \nhasDuplicates","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-seq.html#intersect","title":"Seq.intersect","content":"Seq.intersect \nintersect \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-seq.html#align","title":"Seq.align","content":"Seq.align \nalign \nGroups two sequences together by key","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-seq.html#everyNth","title":"Seq.everyNth","content":"Seq.everyNth \neveryNth \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-seq.html#keyMatch","title":"Seq.keyMatch","content":"Seq.keyMatch \nkeyMatch \n\u003Cpre\u003E**Description**\n Unifies two sequences into a tuple based on a string key\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-seq.html#stddev","title":"Seq.stddev","content":"Seq.stddev \nstddev \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-seq.html#hasDuplicates","title":"Seq.hasDuplicates","content":"Seq.hasDuplicates \nhasDuplicates \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-shortcode.html","title":"ShortCode","content":"ShortCode \n \nShortCode.ShortCode \nShortCode \nShortCode.unwrap \nunwrap \nShortCode.create \ncreate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-shortcode.html#unwrap","title":"ShortCode.unwrap","content":"ShortCode.unwrap \nunwrap \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-shortcode.html#create","title":"ShortCode.create","content":"ShortCode.create \ncreate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-shortcode-shortcode.html","title":"ShortCode","content":"ShortCode \n \nShortCode.Value \nValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-shortcode-shortcode.html#Value","title":"ShortCode.Value","content":"ShortCode.Value \nValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver.html","title":"Solver","content":"Solver \n Helper functions for the creation of \u0060Solver\u0060 functions, which apply time-series models\n to time-series data (when using Bristlecone time-series types). \nSolver.Conditioning \nConditioning \nSolver.Discrete \nDiscrete \nSolver.Solver\u003C\u0027a\u003E \nSolver\u003C\u0027a\u003E \nSolver.StepType \nStepType \nSolver.fixedStep \nfixedStep \nSolver.variableExternalStep \nvariableExternalStep \nSolver.fixedResolutionSolver \nfixedResolutionSolver \nSolver.solver \nsolver","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver.html#fixedStep","title":"Solver.fixedStep","content":"Solver.fixedStep \nfixedStep \n Step the solver using high resolution, and output at low resolution.\n External steps are of a fixed width.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver.html#variableExternalStep","title":"Solver.variableExternalStep","content":"Solver.variableExternalStep \nvariableExternalStep \n Step the solver using the high resolution, and output at low resolution.\n External steps can be variable in size.\n Each time jump is integrated individually.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver.html#fixedResolutionSolver","title":"Solver.fixedResolutionSolver","content":"Solver.fixedResolutionSolver \nfixedResolutionSolver \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver.html#solver","title":"Solver.solver","content":"Solver.solver \nsolver \n Create a solver that applies time-series models to time-series data.\n Takes a \u0060TimeFrame\u0060 of dynamic time-series","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-conditioning.html","title":"Conditioning","content":"Conditioning \n Conditioning of time-series data, which allows for maximum use of observed time-series data. \nConditioning.startPoint \nstartPoint","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-conditioning.html#startPoint","title":"Conditioning.startPoint","content":"Conditioning.startPoint \nstartPoint \n Strategy for assigning a start time - \u0060t0\u0060 - to a time series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-discrete.html","title":"Discrete","content":"Discrete \n \nDiscrete.Measurement\u003C\u0027a\u003E \nMeasurement\u003C\u0027a\u003E \nDiscrete.solve \nsolve","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-discrete.html#solve","title":"Discrete.solve","content":"Discrete.solve \nsolve \n Finds the solution of a discretised model system, given time-series data.\n \u0060startPoint\u0060 - a preconditioned point to represent time-zero.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-discrete-measurement-1.html","title":"Measurement\u003C\u0027a\u003E","content":"Measurement\u003C\u0027a\u003E \n A continuation representing a transform of pre-computed data\n float = previous state","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-solver-1.html","title":"Solver\u003C\u0027a\u003E","content":"Solver\u003C\u0027a\u003E \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-steptype.html","title":"StepType","content":"StepType \n If environmental forcing data is supplied, the output series may be\n configured to be either external (i.e. on observation timeline) or\n internal (e.g. on environmental data timeline). \nStepType.Internal \nInternal \nStepType.External \nExternal","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-steptype.html#Internal","title":"StepType.Internal","content":"StepType.Internal \nInternal \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-solver-steptype.html#External","title":"StepType.External","content":"StepType.External \nExternal \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html","title":"Test","content":"Test \n \nTest.Compute \nCompute \nTest.GenerationRules \nGenerationRules \nTest.Noise \nNoise \nTest.ParameterTestResult \nParameterTestResult \nTest.TestResult \nTestResult \nTest.TestSettings\u003C\u0027a\u003E \nTestSettings\u003C\u0027a\u003E \nTest.isValidSettings \nisValidSettings \nTest.create \ncreate \nTest.addNoise \naddNoise \nTest.addGenerationRules \naddGenerationRules \nTest.addStartValue \naddStartValue \nTest.addStartValues \naddStartValues \nTest.withTimeSeriesLength \nwithTimeSeriesLength \nTest.withFixedTemporalResolution \nwithFixedTemporalResolution \nTest.endWhen \nendWhen \nTest.useRandom \nuseRandom \nTest.useStartTime \nuseStartTime","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#isValidSettings","title":"Test.isValidSettings","content":"Test.isValidSettings \nisValidSettings \n Ensures settings are valid for a test, by ensuring that\n start values have been set for each equation.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#create","title":"Test.create","content":"Test.create \ncreate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#addNoise","title":"Test.addNoise","content":"Test.addNoise \naddNoise \n Add noise to a particular time-series when generating fake time-series.\n Built-in noise functions are in the \u0060Noise\u0060 module.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#addGenerationRules","title":"Test.addGenerationRules","content":"Test.addGenerationRules \naddGenerationRules \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#addStartValue","title":"Test.addStartValue","content":"Test.addStartValue \naddStartValue \n Adds a start value for a time-series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#addStartValues","title":"Test.addStartValues","content":"Test.addStartValues \naddStartValues \n Adds start values to the test settings. Overwrites any existing\n start values that may already exist.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#withTimeSeriesLength","title":"Test.withTimeSeriesLength","content":"Test.withTimeSeriesLength \nwithTimeSeriesLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#withFixedTemporalResolution","title":"Test.withFixedTemporalResolution","content":"Test.withFixedTemporalResolution \nwithFixedTemporalResolution \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#endWhen","title":"Test.endWhen","content":"Test.endWhen \nendWhen \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#useRandom","title":"Test.useRandom","content":"Test.useRandom \nuseRandom \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test.html#useStartTime","title":"Test.useStartTime","content":"Test.useStartTime \nuseStartTime \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-compute.html","title":"Compute","content":"Compute \n \nCompute.drawParameterSet \ndrawParameterSet \nCompute.generateFixedSeries \ngenerateFixedSeries \nCompute.generateMeasures \ngenerateMeasures \nCompute.tryGenerateData\u0027 \ntryGenerateData\u0027 \nCompute.tryGenerateData \ntryGenerateData","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-compute.html#drawParameterSet","title":"Compute.drawParameterSet","content":"Compute.drawParameterSet \ndrawParameterSet \n Draw a random set of parameters","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-compute.html#generateFixedSeries","title":"Compute.generateFixedSeries","content":"Compute.generateFixedSeries \ngenerateFixedSeries \n Generate a fixed-resolution time-series for testing model fits","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-compute.html#generateMeasures","title":"Compute.generateMeasures","content":"Compute.generateMeasures \ngenerateMeasures \n A test procedure for computing measures given time series data.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-compute.html#tryGenerateData\u0027","title":"Compute.tryGenerateData\u0027","content":"Compute.tryGenerateData\u0027 \ntryGenerateData\u0027 \n Generate data","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-compute.html#tryGenerateData","title":"Compute.tryGenerateData","content":"Compute.tryGenerateData \ntryGenerateData \n Generate data and check that it complies with the\n given ruleset.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-generationrules.html","title":"GenerationRules","content":"GenerationRules \n \nGenerationRules.alwaysLessThan \nalwaysLessThan \nGenerationRules.alwaysMoreThan \nalwaysMoreThan \nGenerationRules.monotonicallyIncreasing \nmonotonicallyIncreasing","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-generationrules.html#alwaysLessThan","title":"GenerationRules.alwaysLessThan","content":"GenerationRules.alwaysLessThan \nalwaysLessThan \n Ensures that all generated values are less than i","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-generationrules.html#alwaysMoreThan","title":"GenerationRules.alwaysMoreThan","content":"GenerationRules.alwaysMoreThan \nalwaysMoreThan \n Ensures that all generated values are greater than i","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-generationrules.html#monotonicallyIncreasing","title":"GenerationRules.monotonicallyIncreasing","content":"GenerationRules.monotonicallyIncreasing \nmonotonicallyIncreasing \n Ensures that there is always a positive change in values of a variable","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-noise.html","title":"Noise","content":"Noise \n Functions for adding background variability into\n test problems. \nNoise.tryAddNoise \ntryAddNoise \nNoise.tryAddNormal \ntryAddNormal","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-noise.html#tryAddNoise","title":"Noise.tryAddNoise","content":"Noise.tryAddNoise \ntryAddNoise \n Adds noise to a time-series \u0027seriesName\u0027, based on the given distribution function.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-noise.html#tryAddNormal","title":"Noise.tryAddNormal","content":"Noise.tryAddNormal \ntryAddNormal \n Adds normally-distributed noise around each data point in the selected\n time-series.\n Returns \u0060None\u0060 if the series or parameter does not exist.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-parametertestresult.html","title":"ParameterTestResult","content":"ParameterTestResult \n \nParameterTestResult.Identifier \nIdentifier \nParameterTestResult.RealValue \nRealValue \nParameterTestResult.EstimatedValue \nEstimatedValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-parametertestresult.html#Identifier","title":"ParameterTestResult.Identifier","content":"ParameterTestResult.Identifier \nIdentifier \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-parametertestresult.html#RealValue","title":"ParameterTestResult.RealValue","content":"ParameterTestResult.RealValue \nRealValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-parametertestresult.html#EstimatedValue","title":"ParameterTestResult.EstimatedValue","content":"ParameterTestResult.EstimatedValue \nEstimatedValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testresult.html","title":"TestResult","content":"TestResult \n \nTestResult.Parameters \nParameters \nTestResult.Series \nSeries \nTestResult.ErrorStructure \nErrorStructure \nTestResult.RealLikelihood \nRealLikelihood \nTestResult.EstimatedLikelihood \nEstimatedLikelihood","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testresult.html#Parameters","title":"TestResult.Parameters","content":"TestResult.Parameters \nParameters \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testresult.html#Series","title":"TestResult.Series","content":"TestResult.Series \nSeries \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testresult.html#ErrorStructure","title":"TestResult.ErrorStructure","content":"TestResult.ErrorStructure \nErrorStructure \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testresult.html#RealLikelihood","title":"TestResult.RealLikelihood","content":"TestResult.RealLikelihood \nRealLikelihood \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testresult.html#EstimatedLikelihood","title":"TestResult.EstimatedLikelihood","content":"TestResult.EstimatedLikelihood \nEstimatedLikelihood \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html","title":"TestSettings\u003C\u0027a\u003E","content":"TestSettings\u003C\u0027a\u003E \n \nTestSettings\u003C\u0027a\u003E.Default \nDefault \nTestSettings\u003C\u0027a\u003E.TimeSeriesLength \nTimeSeriesLength \nTestSettings\u003C\u0027a\u003E.StartValues \nStartValues \nTestSettings\u003C\u0027a\u003E.EndCondition \nEndCondition \nTestSettings\u003C\u0027a\u003E.GenerationRules \nGenerationRules \nTestSettings\u003C\u0027a\u003E.NoiseGeneration \nNoiseGeneration \nTestSettings\u003C\u0027a\u003E.EnvironmentalData \nEnvironmentalData \nTestSettings\u003C\u0027a\u003E.Resolution \nResolution \nTestSettings\u003C\u0027a\u003E.Random \nRandom \nTestSettings\u003C\u0027a\u003E.StartDate \nStartDate \nTestSettings\u003C\u0027a\u003E.Attempts \nAttempts","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#Default","title":"TestSettings\u003C\u0027a\u003E.Default","content":"TestSettings\u003C\u0027a\u003E.Default \nDefault \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#TimeSeriesLength","title":"TestSettings\u003C\u0027a\u003E.TimeSeriesLength","content":"TestSettings\u003C\u0027a\u003E.TimeSeriesLength \nTimeSeriesLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#StartValues","title":"TestSettings\u003C\u0027a\u003E.StartValues","content":"TestSettings\u003C\u0027a\u003E.StartValues \nStartValues \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#EndCondition","title":"TestSettings\u003C\u0027a\u003E.EndCondition","content":"TestSettings\u003C\u0027a\u003E.EndCondition \nEndCondition \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#GenerationRules","title":"TestSettings\u003C\u0027a\u003E.GenerationRules","content":"TestSettings\u003C\u0027a\u003E.GenerationRules \nGenerationRules \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#NoiseGeneration","title":"TestSettings\u003C\u0027a\u003E.NoiseGeneration","content":"TestSettings\u003C\u0027a\u003E.NoiseGeneration \nNoiseGeneration \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#EnvironmentalData","title":"TestSettings\u003C\u0027a\u003E.EnvironmentalData","content":"TestSettings\u003C\u0027a\u003E.EnvironmentalData \nEnvironmentalData \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#Resolution","title":"TestSettings\u003C\u0027a\u003E.Resolution","content":"TestSettings\u003C\u0027a\u003E.Resolution \nResolution \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#Random","title":"TestSettings\u003C\u0027a\u003E.Random","content":"TestSettings\u003C\u0027a\u003E.Random \nRandom \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#StartDate","title":"TestSettings\u003C\u0027a\u003E.StartDate","content":"TestSettings\u003C\u0027a\u003E.StartDate \nStartDate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-test-testsettings-1.html#Attempts","title":"TestSettings\u003C\u0027a\u003E.Attempts","content":"TestSettings\u003C\u0027a\u003E.Attempts \nAttempts \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time.html","title":"Time","content":"Time \n \nTime.Bootstrap \nBootstrap \nTime.GrowthSeries \nGrowthSeries \nTime.Resolution \nResolution \nTime.TimeExtensions \nTimeExtensions \nTime.TimeFrame \nTimeFrame \nTime.TimeIndex \nTimeIndex \nTime.TimeSeries \nTimeSeries \nTime.FixedTemporalResolution \nFixedTemporalResolution \nTime.TimeSeries\u003C\u0027T\u003E \nTimeSeries\u003C\u0027T\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-bootstrap.html","title":"Bootstrap","content":"Bootstrap \n Contains functions for bootstrapping time series. \nBootstrap.removeSingle \nremoveSingle","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-bootstrap.html#removeSingle","title":"Bootstrap.removeSingle","content":"Bootstrap.removeSingle \nremoveSingle \n Randomly remove a single time point from a time-series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-growthseries.html","title":"GrowthSeries","content":"GrowthSeries \n \nGrowthSeries.GrowthSeries\u003C\u0027u\u003E \nGrowthSeries\u003C\u0027u\u003E \nGrowthSeries.growthToTime \ngrowthToTime","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-growthseries.html#growthToTime","title":"GrowthSeries.growthToTime","content":"GrowthSeries.growthToTime \ngrowthToTime \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-growthseries-growthseries.html","title":"GrowthSeries\u003C\u0027u\u003E","content":"GrowthSeries\u003C\u0027u\u003E \n \nGrowthSeries\u003C\u0027u\u003E.Cumulative \nCumulative \nGrowthSeries\u003C\u0027u\u003E.Absolute \nAbsolute \nGrowthSeries\u003C\u0027u\u003E.Relative \nRelative","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-growthseries-growthseries.html#Cumulative","title":"GrowthSeries\u003C\u0027u\u003E.Cumulative","content":"GrowthSeries\u003C\u0027u\u003E.Cumulative \nCumulative \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-growthseries-growthseries.html#Absolute","title":"GrowthSeries\u003C\u0027u\u003E.Absolute","content":"GrowthSeries\u003C\u0027u\u003E.Absolute \nAbsolute \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-growthseries-growthseries.html#Relative","title":"GrowthSeries\u003C\u0027u\u003E.Relative","content":"GrowthSeries\u003C\u0027u\u003E.Relative \nRelative \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution.html","title":"Resolution","content":"Resolution \n \nResolution.FixedTemporalResolution \nFixedTemporalResolution \nResolution.TemporalResolution \nTemporalResolution \nResolution.increment \nincrement","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution.html#increment","title":"Resolution.increment","content":"Resolution.increment \nincrement \n Increment time by an increment defined as a fixed temporal resolution.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-fixedtemporalresolution.html","title":"FixedTemporalResolution","content":"FixedTemporalResolution \n Represents the width of equally-spaced steps in time. \nFixedTemporalResolution.Years \nYears \nFixedTemporalResolution.Months \nMonths \nFixedTemporalResolution.Days \nDays \nFixedTemporalResolution.CustomEpoch \nCustomEpoch","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-fixedtemporalresolution.html#Years","title":"FixedTemporalResolution.Years","content":"FixedTemporalResolution.Years \nYears \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-fixedtemporalresolution.html#Months","title":"FixedTemporalResolution.Months","content":"FixedTemporalResolution.Months \nMonths \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-fixedtemporalresolution.html#Days","title":"FixedTemporalResolution.Days","content":"FixedTemporalResolution.Days \nDays \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-fixedtemporalresolution.html#CustomEpoch","title":"FixedTemporalResolution.CustomEpoch","content":"FixedTemporalResolution.CustomEpoch \nCustomEpoch \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-temporalresolution.html","title":"TemporalResolution","content":"TemporalResolution \n Represents the maximum resolution of the time series \nTemporalResolution.Fixed \nFixed \nTemporalResolution.Variable \nVariable","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-temporalresolution.html#Fixed","title":"TemporalResolution.Fixed","content":"TemporalResolution.Fixed \nFixed \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-resolution-temporalresolution.html#Variable","title":"TemporalResolution.Variable","content":"TemporalResolution.Variable \nVariable \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeextensions.html","title":"TimeExtensions","content":"TimeExtensions \n Contains F#-friendly extension methods for .NET time types. \nTimeExtensions.Multiply \nMultiply \nTimeExtensions.Create \nCreate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeextensions.html#Multiply","title":"TimeExtensions.Multiply","content":"TimeExtensions.Multiply \nMultiply \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeextensions.html#Create","title":"TimeExtensions.Create","content":"TimeExtensions.Create \nCreate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeframe.html","title":"TimeFrame","content":"TimeFrame \n A \u0060TimeFrame\u0060 contains multiple time-series that use the same\n temporal index. \nTimeFrame.TimeFrame\u003C\u0027a\u003E \nTimeFrame\u003C\u0027a\u003E \nTimeFrame.tryCreate \ntryCreate \nTimeFrame.inner \ninner","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeframe.html#tryCreate","title":"TimeFrame.tryCreate","content":"TimeFrame.tryCreate \ntryCreate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeframe.html#inner","title":"TimeFrame.inner","content":"TimeFrame.inner \ninner \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeframe-timeframe-1.html","title":"TimeFrame\u003C\u0027a\u003E","content":"TimeFrame\u003C\u0027a\u003E \n \nTimeFrame\u003C\u0027a\u003E.Resolution \nResolution \nTimeFrame\u003C\u0027a\u003E.Series \nSeries \nTimeFrame\u003C\u0027a\u003E.StartDate \nStartDate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeframe-timeframe-1.html#Resolution","title":"TimeFrame\u003C\u0027a\u003E.Resolution","content":"TimeFrame\u003C\u0027a\u003E.Resolution \nResolution \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeframe-timeframe-1.html#Series","title":"TimeFrame\u003C\u0027a\u003E.Series","content":"TimeFrame\u003C\u0027a\u003E.Series \nSeries \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeframe-timeframe-1.html#StartDate","title":"TimeFrame\u003C\u0027a\u003E.StartDate","content":"TimeFrame\u003C\u0027a\u003E.StartDate \nStartDate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex.html","title":"TimeIndex","content":"TimeIndex \n \nTimeIndex.IndexMode\u003C\u0027a\u003E \nIndexMode\u003C\u0027a\u003E \nTimeIndex.TimeIndex\u003C\u0027a\u003E \nTimeIndex\u003C\u0027a\u003E \nTimeIndex.totalYearsElapsedFraction \ntotalYearsElapsedFraction \nTimeIndex.totalYearsElapsed\u0027 \ntotalYearsElapsed\u0027 \nTimeIndex.totalYearsElapsed \ntotalYearsElapsed \nTimeIndex.totalMonthsElapsed \ntotalMonthsElapsed \nTimeIndex.indexSeries \nindexSeries","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex.html#totalYearsElapsedFraction","title":"TimeIndex.totalYearsElapsedFraction","content":"TimeIndex.totalYearsElapsedFraction \ntotalYearsElapsedFraction \n Calculates the fractional number of years elapsed between two dates.\n The basis used is actual/actual.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex.html#totalYearsElapsed\u0027","title":"TimeIndex.totalYearsElapsed\u0027","content":"TimeIndex.totalYearsElapsed\u0027 \ntotalYearsElapsed\u0027 \n Algorithm that ignores leap year days.\n Truncation occurs for 29th Feburary.\n Actual days count basis.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex.html#totalYearsElapsed","title":"TimeIndex.totalYearsElapsed","content":"TimeIndex.totalYearsElapsed \ntotalYearsElapsed \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex.html#totalMonthsElapsed","title":"TimeIndex.totalMonthsElapsed","content":"TimeIndex.totalMonthsElapsed \ntotalMonthsElapsed \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex.html#indexSeries","title":"TimeIndex.indexSeries","content":"TimeIndex.indexSeries \nindexSeries \n Indexes the time series in accordance with a \u0060baselineTime\u0060 and fixed \u0060resolution\u0060.\n Where the time series is of a lower resolution","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-indexmode-1.html","title":"IndexMode\u003C\u0027a\u003E","content":"IndexMode\u003C\u0027a\u003E \n \nIndexMode\u003C\u0027a\u003E.Interpolate \nInterpolate \nIndexMode\u003C\u0027a\u003E.Exact \nExact","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-indexmode-1.html#Interpolate","title":"IndexMode\u003C\u0027a\u003E.Interpolate","content":"IndexMode\u003C\u0027a\u003E.Interpolate \nInterpolate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-indexmode-1.html#Exact","title":"IndexMode\u003C\u0027a\u003E.Exact","content":"IndexMode\u003C\u0027a\u003E.Exact \nExact \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-timeindex-1.html","title":"TimeIndex\u003C\u0027a\u003E","content":"TimeIndex\u003C\u0027a\u003E \n A representation of temporal data as fractions of a common fixed temporal resolution,\n from a given baseline. The baseline must be greater than or equal to the baseline\n of the time series. \nTimeIndex\u003C\u0027a\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nTimeIndex\u003C\u0027a\u003E.Baseline \nBaseline \nTimeIndex\u003C\u0027a\u003E.Item \nItem \nTimeIndex\u003C\u0027a\u003E.Values \nValues","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-timeindex-1.html#\u0060\u0060.ctor\u0060\u0060","title":"TimeIndex\u003C\u0027a\u003E.\u0060\u0060.ctor\u0060\u0060","content":"TimeIndex\u003C\u0027a\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-timeindex-1.html#Baseline","title":"TimeIndex\u003C\u0027a\u003E.Baseline","content":"TimeIndex\u003C\u0027a\u003E.Baseline \nBaseline \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-timeindex-1.html#Item","title":"TimeIndex\u003C\u0027a\u003E.Item","content":"TimeIndex\u003C\u0027a\u003E.Item \nItem \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeindex-timeindex-1.html#Values","title":"TimeIndex\u003C\u0027a\u003E.Values","content":"TimeIndex\u003C\u0027a\u003E.Values \nValues \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html","title":"TimeSeries","content":"TimeSeries \n \nTimeSeries.FloatingTimeSeries\u003C\u0027T\u003E \nFloatingTimeSeries\u003C\u0027T\u003E \nTimeSeries.TimeSeries\u003C\u0027T\u003E \nTimeSeries\u003C\u0027T\u003E \nTimeSeries.fromObservations \nfromObservations \nTimeSeries.fromSeq \nfromSeq \nTimeSeries.toObservations \ntoObservations \nTimeSeries.map \nmap \nTimeSeries.epochs \nepochs \nTimeSeries.checkMoreThanEqualTo \ncheckMoreThanEqualTo \nTimeSeries.trimStart \ntrimStart \nTimeSeries.trimEnd \ntrimEnd \nTimeSeries.bound \nbound \nTimeSeries.endDate \nendDate \nTimeSeries.dates \ndates \nTimeSeries.findExact \nfindExact \nTimeSeries.resolution \nresolution \nTimeSeries.generalise \ngeneralise \nTimeSeries.interpolate \ninterpolate \nTimeSeries.commonTimeline \ncommonTimeline \nTimeSeries.bootstrapFixedStep \nbootstrapFixedStep","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#fromObservations","title":"TimeSeries.fromObservations","content":"TimeSeries.fromObservations \nfromObservations \n Arrange existing observations as a bristlecone \u0060TimeSeries\u0060.\n Observations become ordered and indexed by time.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#fromSeq","title":"TimeSeries.fromSeq","content":"TimeSeries.fromSeq \nfromSeq \n Create a time series from a sequence of existing data, where each\n observation is equally spaced in time.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#toObservations","title":"TimeSeries.toObservations","content":"TimeSeries.toObservations \ntoObservations \n Turn a time series into a sequence of observations","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#map","title":"TimeSeries.map","content":"TimeSeries.map \nmap \n Map a function to each value in the time series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#epochs","title":"TimeSeries.epochs","content":"TimeSeries.epochs \nepochs \n The time intervals - or *epochs* - that form the time series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#checkMoreThanEqualTo","title":"TimeSeries.checkMoreThanEqualTo","content":"TimeSeries.checkMoreThanEqualTo \ncheckMoreThanEqualTo \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#trimStart","title":"TimeSeries.trimStart","content":"TimeSeries.trimStart \ntrimStart \n Remove all time points that occur before the desired start date.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#trimEnd","title":"TimeSeries.trimEnd","content":"TimeSeries.trimEnd \ntrimEnd \n Remove all time points that occur after the desired end date.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#bound","title":"TimeSeries.bound","content":"TimeSeries.bound \nbound \n Bound a time series inclusively","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#endDate","title":"TimeSeries.endDate","content":"TimeSeries.endDate \nendDate \n Date of the last observation within the time series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#dates","title":"TimeSeries.dates","content":"TimeSeries.dates \ndates \n Time points of sampling within the time series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#findExact","title":"TimeSeries.findExact","content":"TimeSeries.findExact \nfindExact \n Find an observation by its exact time of occurrence.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#resolution","title":"TimeSeries.resolution","content":"TimeSeries.resolution \nresolution \n Calculates the temporal resolution of a time series","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#generalise","title":"TimeSeries.generalise","content":"TimeSeries.generalise \ngeneralise \n Reduces the temporal resolution of \u0060series\u0060.\n The time series must be able to be split exactly into the lower resolution. For example,\n when upscaling from one to three years, the time series must be a multiple of three years.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#interpolate","title":"TimeSeries.interpolate","content":"TimeSeries.interpolate \ninterpolate \n Interpolates missing values in a time series, where missing values\n are represented as an \u0060Option\u0060 type.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#commonTimeline","title":"TimeSeries.commonTimeline","content":"TimeSeries.commonTimeline \ncommonTimeline \n\u003Cpre\u003E**Description**\n Determines if multiple time series have the same temporal extent and time steps.\n**Output Type**\n * A \u0060TimeSpan [] option\u0060 containing the common timeline, or \u0060None\u0060 if there is no common timeline.\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries.html#bootstrapFixedStep","title":"TimeSeries.bootstrapFixedStep","content":"TimeSeries.bootstrapFixedStep \nbootstrapFixedStep \n Removing a step takes account of leap years.\n NB Never removes the original start point.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-floatingtimeseries-1.html","title":"FloatingTimeSeries\u003C\u0027T\u003E","content":"FloatingTimeSeries\u003C\u0027T\u003E \n A sequence of data observed at time points.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-timeseries-1.html","title":"TimeSeries\u003C\u0027T\u003E","content":"TimeSeries\u003C\u0027T\u003E \n A sequence of data observed at time intervals (regular or irregular),\n where the sampling intervals occur following a fixed start observation. \nTimeSeries\u003C\u0027T\u003E.Resolution \nResolution \nTimeSeries\u003C\u0027T\u003E.Head \nHead \nTimeSeries\u003C\u0027T\u003E.TimeSteps \nTimeSteps \nTimeSeries\u003C\u0027T\u003E.Values \nValues \nTimeSeries\u003C\u0027T\u003E.StartDate \nStartDate \nTimeSeries\u003C\u0027T\u003E.Length \nLength","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-timeseries-1.html#Resolution","title":"TimeSeries\u003C\u0027T\u003E.Resolution","content":"TimeSeries\u003C\u0027T\u003E.Resolution \nResolution \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-timeseries-1.html#Head","title":"TimeSeries\u003C\u0027T\u003E.Head","content":"TimeSeries\u003C\u0027T\u003E.Head \nHead \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-timeseries-1.html#TimeSteps","title":"TimeSeries\u003C\u0027T\u003E.TimeSteps","content":"TimeSeries\u003C\u0027T\u003E.TimeSteps \nTimeSteps \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-timeseries-1.html#Values","title":"TimeSeries\u003C\u0027T\u003E.Values","content":"TimeSeries\u003C\u0027T\u003E.Values \nValues \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-timeseries-1.html#StartDate","title":"TimeSeries\u003C\u0027T\u003E.StartDate","content":"TimeSeries\u003C\u0027T\u003E.StartDate \nStartDate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-timeseries-1.html#Length","title":"TimeSeries\u003C\u0027T\u003E.Length","content":"TimeSeries\u003C\u0027T\u003E.Length \nLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-fixedtemporalresolution.html","title":"FixedTemporalResolution","content":"FixedTemporalResolution \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-1.html","title":"TimeSeries\u003C\u0027T\u003E","content":"TimeSeries\u003C\u0027T\u003E \n \nTimeSeries\u003C\u0027T\u003E.Resolution \nResolution \nTimeSeries\u003C\u0027T\u003E.Head \nHead \nTimeSeries\u003C\u0027T\u003E.TimeSteps \nTimeSteps \nTimeSeries\u003C\u0027T\u003E.Values \nValues \nTimeSeries\u003C\u0027T\u003E.StartDate \nStartDate \nTimeSeries\u003C\u0027T\u003E.Length \nLength","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-1.html#Resolution","title":"TimeSeries\u003C\u0027T\u003E.Resolution","content":"TimeSeries\u003C\u0027T\u003E.Resolution \nResolution \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-1.html#Head","title":"TimeSeries\u003C\u0027T\u003E.Head","content":"TimeSeries\u003C\u0027T\u003E.Head \nHead \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-1.html#TimeSteps","title":"TimeSeries\u003C\u0027T\u003E.TimeSteps","content":"TimeSeries\u003C\u0027T\u003E.TimeSteps \nTimeSteps \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-1.html#Values","title":"TimeSeries\u003C\u0027T\u003E.Values","content":"TimeSeries\u003C\u0027T\u003E.Values \nValues \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-1.html#StartDate","title":"TimeSeries\u003C\u0027T\u003E.StartDate","content":"TimeSeries\u003C\u0027T\u003E.StartDate \nStartDate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-time-timeseries-1.html#Length","title":"TimeSeries\u003C\u0027T\u003E.Length","content":"TimeSeries\u003C\u0027T\u003E.Length \nLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-positiveint.html","title":"PositiveInt","content":"PositiveInt \n \nPositiveInt.Value \nValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-positiveint.html#Value","title":"PositiveInt.Value","content":"PositiveInt.Value \nValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-realtimespan.html","title":"RealTimeSpan","content":"RealTimeSpan \n \nRealTimeSpan.Value \nValue","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-realtimespan.html#Value","title":"RealTimeSpan.Value","content":"RealTimeSpan.Value \nValue \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-0.html","title":"Bristlecone","content":"Bristlecone \n \nBristlecone.fitDendro \nfitDendro \nBristlecone.predictAheadDendro \npredictAheadDendro","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-0.html#fitDendro","title":"Bristlecone.fitDendro","content":"Bristlecone.fitDendro \nfitDendro \n Fit a model to plant growth time-series. The plant individual\u0027s\n growth data is always labelled as \u0060x\u0060.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-bristlecone-0.html#predictAheadDendro","title":"Bristlecone.predictAheadDendro","content":"Bristlecone.predictAheadDendro \npredictAheadDendro \n Perform n-step-ahead computation on the hypothesis and plant.\n The plant individual\u0027s growth data is always labelled as \u0060x\u0060.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-confidence.html","title":"Confidence","content":"Confidence \n \nConfidence.Row \nRow \nConfidence.IndividualCI \nIndividualCI \nConfidence.save \nsave","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-confidence.html#save","title":"Confidence.save","content":"Confidence.save \nsave \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-confidence-row.html","title":"Row","content":"Row \n \nRow.fromResult \nfromResult","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-confidence-row.html#fromResult","title":"Row.fromResult","content":"Row.fromResult \nfromResult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-confidence-individualci.html","title":"IndividualCI","content":"IndividualCI \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config.html","title":"Config","content":"Config \nSpecifies how file paths are constructed for different data types. \nConfig.DataType \nDataType \nConfig.EnsembleType \nEnsembleType \nConfig.typeAsLabel \ntypeAsLabel \nConfig.ensembleAsLabel \nensembleAsLabel \nConfig.filePath \nfilePath \nConfig.filePathEnsemble \nfilePathEnsemble \nConfig.regexGuid \nregexGuid \nConfig.fileMatch \nfileMatch","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config.html#typeAsLabel","title":"Config.typeAsLabel","content":"Config.typeAsLabel \ntypeAsLabel \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config.html#ensembleAsLabel","title":"Config.ensembleAsLabel","content":"Config.ensembleAsLabel \nensembleAsLabel \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config.html#filePath","title":"Config.filePath","content":"Config.filePath \nfilePath \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config.html#filePathEnsemble","title":"Config.filePathEnsemble","content":"Config.filePathEnsemble \nfilePathEnsemble \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config.html#regexGuid","title":"Config.regexGuid","content":"Config.regexGuid \nregexGuid \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config.html#fileMatch","title":"Config.fileMatch","content":"Config.fileMatch \nfileMatch \n Find files in a directory that match the standard bristlecone\n file naming scheme.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-datatype.html","title":"DataType","content":"DataType \n \nDataType.MLE \nMLE \nDataType.Trace \nTrace \nDataType.Series \nSeries \nDataType.Intervals \nIntervals \nDataType.Components \nComponents","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-datatype.html#MLE","title":"DataType.MLE","content":"DataType.MLE \nMLE \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-datatype.html#Trace","title":"DataType.Trace","content":"DataType.Trace \nTrace \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-datatype.html#Series","title":"DataType.Series","content":"DataType.Series \nSeries \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-datatype.html#Intervals","title":"DataType.Intervals","content":"DataType.Intervals \nIntervals \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-datatype.html#Components","title":"DataType.Components","content":"DataType.Components \nComponents \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-ensembletype.html","title":"EnsembleType","content":"EnsembleType \n \nEnsembleType.Weights \nWeights \nEnsembleType.Convergence \nConvergence","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-ensembletype.html#Weights","title":"EnsembleType.Weights","content":"EnsembleType.Weights \nWeights \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-config-ensembletype.html#Convergence","title":"EnsembleType.Convergence","content":"EnsembleType.Convergence \nConvergence \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-convergence.html","title":"Convergence","content":"Convergence \n \nConvergence.ConvergenceStats \nConvergenceStats \nConvergence.toCsvRows \ntoCsvRows \nConvergence.save \nsave","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-convergence.html#toCsvRows","title":"Convergence.toCsvRows","content":"Convergence.toCsvRows \ntoCsvRows \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-convergence.html#save","title":"Convergence.save","content":"Convergence.save \nsave \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-convergence-convergencestats.html","title":"ConvergenceStats","content":"ConvergenceStats \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-estimationresult.html","title":"EstimationResult","content":"EstimationResult \n \nEstimationResult.saveAll \nsaveAll \nEstimationResult.loadAll \nloadAll","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-estimationresult.html#saveAll","title":"EstimationResult.saveAll","content":"EstimationResult.saveAll \nsaveAll \n Save the Maximum Likelihood Estimate, trace of the optimisation\n procedure, and time-series.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-estimationresult.html#loadAll","title":"EstimationResult.loadAll","content":"EstimationResult.loadAll \nloadAll \n Load an \u0060EstimationResult\u0060 that has previously been saved as\n three seperate dataframes. Results will only be reconstructed\n when file names and formats are in original Bristlecone format.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-mle.html","title":"MLE","content":"MLE \n \nMLE.Row \nRow \nMLE.IndividualMLE \nIndividualMLE \nMLE.save \nsave \nMLE.load \nload","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-mle.html#save","title":"MLE.save","content":"MLE.save \nsave \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-mle.html#load","title":"MLE.load","content":"MLE.load \nload \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-mle-row.html","title":"Row","content":"Row \n \nRow.fromResult \nfromResult \nRow.toResult \ntoResult","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-mle-row.html#fromResult","title":"Row.fromResult","content":"Row.fromResult \nfromResult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-mle-row.html#toResult","title":"Row.toResult","content":"Row.toResult \ntoResult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-mle-individualmle.html","title":"IndividualMLE","content":"IndividualMLE \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-modelselection.html","title":"ModelSelection","content":"ModelSelection \n \nModelSelection.Row \nRow \nModelSelection.EnsembleAIC \nEnsembleAIC \nModelSelection.save \nsave","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-modelselection.html#save","title":"ModelSelection.save","content":"ModelSelection.save \nsave \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-modelselection-row.html","title":"Row","content":"Row \n \nRow.fromResult \nfromResult","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-modelselection-row.html#fromResult","title":"Row.fromResult","content":"Row.fromResult \nfromResult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-modelselection-ensembleaic.html","title":"EnsembleAIC","content":"EnsembleAIC \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-series.html","title":"Series","content":"Series \n \nSeries.Row \nRow \nSeries.IndividualSeries \nIndividualSeries \nSeries.save \nsave \nSeries.load \nload","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-series.html#save","title":"Series.save","content":"Series.save \nsave \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-series.html#load","title":"Series.load","content":"Series.load \nload \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-series-row.html","title":"Row","content":"Row \n \nRow.fromResult \nfromResult \nRow.toSeries \ntoSeries","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-series-row.html#fromResult","title":"Row.fromResult","content":"Row.fromResult \nfromResult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-series-row.html#toSeries","title":"Row.toSeries","content":"Row.toSeries \ntoSeries \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-series-individualseries.html","title":"IndividualSeries","content":"IndividualSeries \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-trace.html","title":"Trace","content":"Trace \n \nTrace.Row \nRow \nTrace.BristleconeTrace \nBristleconeTrace \nTrace.save \nsave \nTrace.load \nload","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-trace.html#save","title":"Trace.save","content":"Trace.save \nsave \n Save the trace of an \u0060EstimationResult\u0060 to a CSV file.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-trace.html#load","title":"Trace.load","content":"Trace.load \nload \n Load a trace from a CSV file, as saved by Bristlecone.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-trace-row.html","title":"Row","content":"Row \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-trace-bristleconetrace.html","title":"BristleconeTrace","content":"BristleconeTrace \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-plantindividual.html","title":"PlantIndividual","content":"PlantIndividual \n \nPlantIndividual.EnvironmentVariableData \nEnvironmentVariableData \nPlantIndividual.RingWidthData \nRingWidthData \nPlantIndividual.loadRingWidths \nloadRingWidths \nPlantIndividual.loadLocalEnvironmentVariable \nloadLocalEnvironmentVariable","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-plantindividual.html#loadRingWidths","title":"PlantIndividual.loadRingWidths","content":"PlantIndividual.loadRingWidths \nloadRingWidths \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-plantindividual.html#loadLocalEnvironmentVariable","title":"PlantIndividual.loadLocalEnvironmentVariable","content":"PlantIndividual.loadLocalEnvironmentVariable \nloadLocalEnvironmentVariable \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-plantindividual-environmentvariabledata.html","title":"EnvironmentVariableData","content":"EnvironmentVariableData \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-data-plantindividual-ringwidthdata.html","title":"RingWidthData","content":"RingWidthData \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-environmentalvariables.html","title":"EnvironmentalVariables","content":"EnvironmentalVariables \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-juliandate.html","title":"JulianDate","content":"JulianDate \n \nJulianDate.minutesInDay \nminutesInDay \nJulianDate.secondsInDay \nsecondsInDay \nJulianDate.J2000 \nJ2000 \nJulianDate.gregorianToJulian \ngregorianToJulian \nJulianDate.toDate \ntoDate \nJulianDate.julianCentury \njulianCentury","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-juliandate.html#minutesInDay","title":"JulianDate.minutesInDay","content":"JulianDate.minutesInDay \nminutesInDay \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-juliandate.html#secondsInDay","title":"JulianDate.secondsInDay","content":"JulianDate.secondsInDay \nsecondsInDay \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-juliandate.html#J2000","title":"JulianDate.J2000","content":"JulianDate.J2000 \nJ2000 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-juliandate.html#gregorianToJulian","title":"JulianDate.gregorianToJulian","content":"JulianDate.gregorianToJulian \ngregorianToJulian \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-juliandate.html#toDate","title":"JulianDate.toDate","content":"JulianDate.toDate \ntoDate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-juliandate.html#julianCentury","title":"JulianDate.julianCentury","content":"JulianDate.julianCentury \njulianCentury \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html","title":"PlantIndividual","content":"PlantIndividual \n \nPlantIndividual.PlantGrowth \nPlantGrowth \nPlantIndividual.PlantIndividual \nPlantIndividual \nPlantIndividual.Trait \nTrait \nPlantIndividual.removeUnit \nremoveUnit \nPlantIndividual.zipEnv \nzipEnv \nPlantIndividual.zipEnvMany \nzipEnvMany \nPlantIndividual.growthSeries \ngrowthSeries \nPlantIndividual.toRelativeGrowth \ntoRelativeGrowth \nPlantIndividual.toCumulativeGrowth \ntoCumulativeGrowth \nPlantIndividual.bound \nbound \nPlantIndividual.keepCommonYears \nkeepCommonYears","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#removeUnit","title":"PlantIndividual.removeUnit","content":"PlantIndividual.removeUnit \nremoveUnit \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#zipEnv","title":"PlantIndividual.zipEnv","content":"PlantIndividual.zipEnv \nzipEnv \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#zipEnvMany","title":"PlantIndividual.zipEnvMany","content":"PlantIndividual.zipEnvMany \nzipEnvMany \n Assigns local environmental conditions to each plant in a sequence,\n given a sequence of environmental time-series where each time-series\n has the code of the plant associated with it.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#growthSeries","title":"PlantIndividual.growthSeries","content":"PlantIndividual.growthSeries \ngrowthSeries \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#toRelativeGrowth","title":"PlantIndividual.toRelativeGrowth","content":"PlantIndividual.toRelativeGrowth \ntoRelativeGrowth \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#toCumulativeGrowth","title":"PlantIndividual.toCumulativeGrowth","content":"PlantIndividual.toCumulativeGrowth \ntoCumulativeGrowth \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#bound","title":"PlantIndividual.bound","content":"PlantIndividual.bound \nbound \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual.html#keepCommonYears","title":"PlantIndividual.keepCommonYears","content":"PlantIndividual.keepCommonYears \nkeepCommonYears \n Where a plant has associated environmental data, discard the beginning\n or end of the growth and environment time-series where not all data\n are present.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantgrowth.html","title":"PlantGrowth","content":"PlantGrowth \n \nPlantGrowth.RingWidth \nRingWidth \nPlantGrowth.BasalArea \nBasalArea \nPlantGrowth.StemVolume \nStemVolume","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantgrowth.html#RingWidth","title":"PlantGrowth.RingWidth","content":"PlantGrowth.RingWidth \nRingWidth \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantgrowth.html#BasalArea","title":"PlantGrowth.BasalArea","content":"PlantGrowth.BasalArea \nBasalArea \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantgrowth.html#StemVolume","title":"PlantGrowth.StemVolume","content":"PlantGrowth.StemVolume \nStemVolume \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantindividual.html","title":"PlantIndividual","content":"PlantIndividual \n \nPlantIndividual.Identifier \nIdentifier \nPlantIndividual.Growth \nGrowth \nPlantIndividual.InternalControls \nInternalControls \nPlantIndividual.Environment \nEnvironment","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantindividual.html#Identifier","title":"PlantIndividual.Identifier","content":"PlantIndividual.Identifier \nIdentifier \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantindividual.html#Growth","title":"PlantIndividual.Growth","content":"PlantIndividual.Growth \nGrowth \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantindividual.html#InternalControls","title":"PlantIndividual.InternalControls","content":"PlantIndividual.InternalControls \nInternalControls \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-plantindividual.html#Environment","title":"PlantIndividual.Environment","content":"PlantIndividual.Environment \nEnvironment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-trait.html","title":"Trait","content":"Trait \n \nTrait.Static \nStatic \nTrait.Variable \nVariable","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-trait.html#Static","title":"Trait.Static","content":"Trait.Static \nStatic \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-plantindividual-trait.html#Variable","title":"Trait.Variable","content":"Trait.Variable \nVariable \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html","title":"Sunrise","content":"Sunrise \n The sunrise equation can be used to calculate the\n time of sunrise and sunset for any latitude, longitude,\n and date.\n See: https://en.wikipedia.org/wiki/Sunrise_equation#Complete_calculation_on_Earth\n Adapted from the SolarCalc by NOAA.\n Source: https://dotnetfiddle.net/N3j5th \nSunrise.DayLength \nDayLength \nSunrise.DayLengthCache \nDayLengthCache \nSunrise.dayFraction \ndayFraction \nSunrise.geomMeanAnomalySun \ngeomMeanAnomalySun \nSunrise.geomMeanLongitudeSun \ngeomMeanLongitudeSun \nSunrise.eccentricityEarthOrbit \neccentricityEarthOrbit \nSunrise.radians \nradians \nSunrise.degrees \ndegrees \nSunrise.equationOfCentreSun \nequationOfCentreSun \nSunrise.trueLongitudeSun \ntrueLongitudeSun \nSunrise.apparentLongitudeSun \napparentLongitudeSun \nSunrise.meanObliquityOfEcliptic \nmeanObliquityOfEcliptic \nSunrise.obliquityCorrection \nobliquityCorrection \nSunrise.equationOfTime \nequationOfTime \nSunrise.declinationOfSun \ndeclinationOfSun \nSunrise.cosHourAngle \ncosHourAngle \nSunrise.hourAngleSunrise \nhourAngleSunrise \nSunrise.solarNoon \nsolarNoon \nSunrise.sunrise \nsunrise \nSunrise.sunset \nsunset \nSunrise.calculate \ncalculate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#dayFraction","title":"Sunrise.dayFraction","content":"Sunrise.dayFraction \ndayFraction \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#geomMeanAnomalySun","title":"Sunrise.geomMeanAnomalySun","content":"Sunrise.geomMeanAnomalySun \ngeomMeanAnomalySun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#geomMeanLongitudeSun","title":"Sunrise.geomMeanLongitudeSun","content":"Sunrise.geomMeanLongitudeSun \ngeomMeanLongitudeSun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#eccentricityEarthOrbit","title":"Sunrise.eccentricityEarthOrbit","content":"Sunrise.eccentricityEarthOrbit \neccentricityEarthOrbit \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#radians","title":"Sunrise.radians","content":"Sunrise.radians \nradians \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#degrees","title":"Sunrise.degrees","content":"Sunrise.degrees \ndegrees \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#equationOfCentreSun","title":"Sunrise.equationOfCentreSun","content":"Sunrise.equationOfCentreSun \nequationOfCentreSun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#trueLongitudeSun","title":"Sunrise.trueLongitudeSun","content":"Sunrise.trueLongitudeSun \ntrueLongitudeSun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#apparentLongitudeSun","title":"Sunrise.apparentLongitudeSun","content":"Sunrise.apparentLongitudeSun \napparentLongitudeSun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#meanObliquityOfEcliptic","title":"Sunrise.meanObliquityOfEcliptic","content":"Sunrise.meanObliquityOfEcliptic \nmeanObliquityOfEcliptic \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#obliquityCorrection","title":"Sunrise.obliquityCorrection","content":"Sunrise.obliquityCorrection \nobliquityCorrection \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#equationOfTime","title":"Sunrise.equationOfTime","content":"Sunrise.equationOfTime \nequationOfTime \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#declinationOfSun","title":"Sunrise.declinationOfSun","content":"Sunrise.declinationOfSun \ndeclinationOfSun \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#cosHourAngle","title":"Sunrise.cosHourAngle","content":"Sunrise.cosHourAngle \ncosHourAngle \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#hourAngleSunrise","title":"Sunrise.hourAngleSunrise","content":"Sunrise.hourAngleSunrise \nhourAngleSunrise \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#solarNoon","title":"Sunrise.solarNoon","content":"Sunrise.solarNoon \nsolarNoon \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#sunrise","title":"Sunrise.sunrise","content":"Sunrise.sunrise \nsunrise \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#sunset","title":"Sunrise.sunset","content":"Sunrise.sunset \nsunset \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise.html#calculate","title":"Sunrise.calculate","content":"Sunrise.calculate \ncalculate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise-daylength.html","title":"DayLength","content":"DayLength \n \nDayLength.CompleteLight \nCompleteLight \nDayLength.CompleteDark \nCompleteDark \nDayLength.PartialLight \nPartialLight","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise-daylength.html#CompleteLight","title":"DayLength.CompleteLight","content":"DayLength.CompleteLight \nCompleteLight \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise-daylength.html#CompleteDark","title":"DayLength.CompleteDark","content":"DayLength.CompleteDark \nCompleteDark \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise-daylength.html#PartialLight","title":"DayLength.PartialLight","content":"DayLength.PartialLight \nPartialLight \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise-daylengthcache.html","title":"DayLengthCache","content":"DayLengthCache \n \nDayLengthCache.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nDayLengthCache.GetLight \nGetLight","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise-daylengthcache.html#\u0060\u0060.ctor\u0060\u0060","title":"DayLengthCache.\u0060\u0060.ctor\u0060\u0060","content":"DayLengthCache.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-sunrise-daylengthcache.html#GetLight","title":"DayLengthCache.GetLight","content":"DayLengthCache.GetLight \nGetLight \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-mm.html","title":"mm","content":"mm \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-dendro-year.html","title":"year","content":"year \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-base.html","title":"Base","content":"Base \n Module provides functions that \u0027wrap\u0027 a raw integration\n routine into a form that can be used within Bristlecone. \nBase.nanResult \nnanResult \nBase.applyDynamicVariables \napplyDynamicVariables \nBase.applyExternalEnvironment \napplyExternalEnvironment \nBase.solve \nsolve","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-base.html#nanResult","title":"Base.nanResult","content":"Base.nanResult \nnanResult \n Generates a coded map of time-series where all values are NaN.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-base.html#applyDynamicVariables","title":"Base.applyDynamicVariables","content":"Base.applyDynamicVariables \napplyDynamicVariables \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-base.html#applyExternalEnvironment","title":"Base.applyExternalEnvironment","content":"Base.applyExternalEnvironment \napplyExternalEnvironment \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-base.html#solve","title":"Base.solve","content":"Base.solve \nsolve \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-mathnet.html","title":"MathNet","content":"MathNet \n \nMathNet.integrate\u0027 \nintegrate\u0027 \nMathNet.integrate \nintegrate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-mathnet.html#integrate\u0027","title":"MathNet.integrate\u0027","content":"MathNet.integrate\u0027 \nintegrate\u0027 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-mathnet.html#integrate","title":"MathNet.integrate","content":"MathNet.integrate \nintegrate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-oslo.html","title":"Oslo","content":"Oslo \n Oslo is an integration library provided by Microsoft Research Cambridge. \nOslo.Options \nOptions \nOslo.integrate\u0027 \nintegrate\u0027 \nOslo.integrate \nintegrate \nOslo.integrateWithErrorHandling \nintegrateWithErrorHandling","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-oslo.html#integrate\u0027","title":"Oslo.integrate\u0027","content":"Oslo.integrate\u0027 \nintegrate\u0027 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-oslo.html#integrate","title":"Oslo.integrate","content":"Oslo.integrate \nintegrate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-oslo.html#integrateWithErrorHandling","title":"Oslo.integrateWithErrorHandling","content":"Oslo.integrateWithErrorHandling \nintegrateWithErrorHandling \n On integration errors, assigns the maximum float value to every data point.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-oslo-options.html","title":"Options","content":"Options \n \nOptions.defaultOptions \ndefaultOptions \nOptions.custom \ncustom","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-oslo-options.html#defaultOptions","title":"Options.defaultOptions","content":"Options.defaultOptions \ndefaultOptions \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-oslo-options.html#custom","title":"Options.custom","content":"Options.custom \ncustom \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-simple.html","title":"Simple","content":"Simple \n \nSimple.rungekutta4\u0027 \nrungekutta4\u0027 \nSimple.rungekutta4 \nrungekutta4 \nSimple.rungekutta4dual\u0027 \nrungekutta4dual\u0027 \nSimple.rungekutta4dual \nrungekutta4dual \nSimple.rungeKutta4Variable \nrungeKutta4Variable","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-simple.html#rungekutta4\u0027","title":"Simple.rungekutta4\u0027","content":"Simple.rungekutta4\u0027 \nrungekutta4\u0027 \n Fourth order runge-kutta algorithm calculations","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-simple.html#rungekutta4","title":"Simple.rungekutta4","content":"Simple.rungekutta4 \nrungekutta4 \n Fourth order runge-kutta solver","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-simple.html#rungekutta4dual\u0027","title":"Simple.rungekutta4dual\u0027","content":"Simple.rungekutta4dual\u0027 \nrungekutta4dual\u0027 \n Fourth order runge-kutta algorithm for a 2 equation, 1st order system.\n Adapted from: https://www.calvin.edu/~scofield/courses/m231/materials/rungeKuttaFormulas.pdf","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-simple.html#rungekutta4dual","title":"Simple.rungekutta4dual","content":"Simple.rungekutta4dual \nrungekutta4dual \n Fourth order runge-kutta solver for a 2 equation, 1st order system","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-integration-simple.html#rungeKutta4Variable","title":"Simple.rungeKutta4Variable","content":"Simple.rungeKutta4Variable \nrungeKutta4Variable \n 4th order runge-kutta solver that can handle (in very basic form) variable time, for example when using sedimentary age-depth models.\n It is for a single-equation, 1st order system.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-console.html","title":"Console","content":"Console \n Simple logger to console that prints line-by-line progress and events. \nConsole.logger \nlogger","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-console.html#logger","title":"Console.logger","content":"Console.logger \nlogger \n A simple console logger.\n \u0060nIteration\u0060 specifies the number of iterations after which to log\n the current likelihood and parameter values.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-logevent.html","title":"LogEvent","content":"LogEvent \n \nLogEvent.OptimisationEvent \nOptimisationEvent \nLogEvent.DifferentiationEvent \nDifferentiationEvent \nLogEvent.GeneralEvent \nGeneralEvent \nLogEvent.WorkloadEvent \nWorkloadEvent \nLogEvent.DebugEvent \nDebugEvent","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-logevent.html#OptimisationEvent","title":"LogEvent.OptimisationEvent","content":"LogEvent.OptimisationEvent \nOptimisationEvent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-logevent.html#DifferentiationEvent","title":"LogEvent.DifferentiationEvent","content":"LogEvent.DifferentiationEvent \nDifferentiationEvent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-logevent.html#GeneralEvent","title":"LogEvent.GeneralEvent","content":"LogEvent.GeneralEvent \nGeneralEvent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-logevent.html#WorkloadEvent","title":"LogEvent.WorkloadEvent","content":"LogEvent.WorkloadEvent \nWorkloadEvent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-logevent.html#DebugEvent","title":"LogEvent.DebugEvent","content":"LogEvent.DebugEvent \nDebugEvent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-modelfitstate.html","title":"ModelFitState","content":"ModelFitState \n \nModelFitState.Iteration \nIteration \nModelFitState.Likelihood \nLikelihood \nModelFitState.Theta \nTheta","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-modelfitstate.html#Iteration","title":"ModelFitState.Iteration","content":"ModelFitState.Iteration \nIteration \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-modelfitstate.html#Likelihood","title":"ModelFitState.Likelihood","content":"ModelFitState.Likelihood \nLikelihood \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-modelfitstate.html#Theta","title":"ModelFitState.Theta","content":"ModelFitState.Theta \nTheta \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-rhelper.html","title":"RHelper","content":"RHelper \n \nRHelper.(\u003E!\u003E) \n(\u003E!\u003E)","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-rhelper.html#(\u003E!\u003E)","title":"RHelper.(\u003E!\u003E)","content":"RHelper.(\u003E!\u003E) \n(\u003E!\u003E) \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace.html","title":"RealTimeTrace","content":"RealTimeTrace \n \nRealTimeTrace.TraceGraph \nTraceGraph \nRealTimeTrace.decompose \ndecompose \nRealTimeTrace.convertToDataFrame \nconvertToDataFrame \nRealTimeTrace.facetedTrace \nfacetedTrace \nRealTimeTrace.graphWithConsole \ngraphWithConsole","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace.html#decompose","title":"RealTimeTrace.decompose","content":"RealTimeTrace.decompose \ndecompose \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace.html#convertToDataFrame","title":"RealTimeTrace.convertToDataFrame","content":"RealTimeTrace.convertToDataFrame \nconvertToDataFrame \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace.html#facetedTrace","title":"RealTimeTrace.facetedTrace","content":"RealTimeTrace.facetedTrace \nfacetedTrace \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace.html#graphWithConsole","title":"RealTimeTrace.graphWithConsole","content":"RealTimeTrace.graphWithConsole \ngraphWithConsole \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace-tracegraph.html","title":"TraceGraph","content":"TraceGraph \n \nTraceGraph.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nTraceGraph.Log \nLog","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace-tracegraph.html#\u0060\u0060.ctor\u0060\u0060","title":"TraceGraph.\u0060\u0060.ctor\u0060\u0060","content":"TraceGraph.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-realtimetrace-tracegraph.html#Log","title":"TraceGraph.Log","content":"TraceGraph.Log \nLog \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-device.html","title":"Device","content":"Device \n \nDevice.X11 \nX11 \nDevice.PNG \nPNG","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-device.html#X11","title":"Device.X11","content":"Device.X11 \nX11 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-logging-device.html#PNG","title":"Device.PNG","content":"Device.PNG \nPNG \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modellibrary-likelihood.html","title":"Likelihood","content":"Likelihood \nLikelihood functions to represent a variety of distributions and data types. \nLikelihood.sumOfSquares \nsumOfSquares \nLikelihood.gaussian \ngaussian \nLikelihood.bivariateGaussian \nbivariateGaussian","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modellibrary-likelihood.html#sumOfSquares","title":"Likelihood.sumOfSquares","content":"Likelihood.sumOfSquares \nsumOfSquares \n Residual sum of squares. Provides a simple metric of distance between\n observed data and model predictions.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modellibrary-likelihood.html#gaussian","title":"Likelihood.gaussian","content":"Likelihood.gaussian \ngaussian \n Log likelihood function for single equation system, assuming Gaussian error for x.\n Requires a parameter \u0027\u03C3[x]\u0027 to be included in any \u0060ModelSystem\u0060 that uses it.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-modellibrary-likelihood.html#bivariateGaussian","title":"Likelihood.bivariateGaussian","content":"Likelihood.bivariateGaussian \nbivariateGaussian \n Log likelihood function for dual simultaneous system, assuming Gaussian error for both x and y.\n Requires parameters \u0027\u03C3[x]\u0027, \u0027\u03C3[y]\u0027 and \u0027\u03C1\u0027 to be included in any \u0060ModelSystem\u0060 that uses it.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba.html","title":"Amoeba","content":"Amoeba \n Nelder Mead implementation\n Adapted from original at: https://github.com/mathias-brandewinder/Amoeba \nAmoeba.Solver \nSolver \nAmoeba.single \nsingle \nAmoeba.swarm \nswarm","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba.html#single","title":"Amoeba.single","content":"Amoeba.single \nsingle \n Optimise an objective function using a single downhill Nelder Mead simplex.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba.html#swarm","title":"Amoeba.swarm","content":"Amoeba.swarm \nswarm \n Optimisation heuristic that creates a swarm of amoeba (Nelder-Mead) solvers.\n The swarm proceeds for \u0060numberOfLevels\u0060 levels, constraining the starting bounds\n at each level to the 80th percentile of the current set of best likelihoods.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html","title":"Solver","content":"Solver \n \nSolver.Amoeba \nAmoeba \nSolver.Settings \nSettings \nSolver.Default \nDefault \nSolver.evaluate \nevaluate \nSolver.valueOf \nvalueOf \nSolver.replace \nreplace \nSolver.centroid \ncentroid \nSolver.stretch \nstretch \nSolver.reflected \nreflected \nSolver.expanded \nexpanded \nSolver.contracted \ncontracted \nSolver.shrink \nshrink \nSolver.update \nupdate \nSolver.initialize \ninitialize \nSolver.solve \nsolve \nSolver.swarm \nswarm","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#Default","title":"Solver.Default","content":"Solver.Default \nDefault \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#evaluate","title":"Solver.evaluate","content":"Solver.evaluate \nevaluate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#valueOf","title":"Solver.valueOf","content":"Solver.valueOf \nvalueOf \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#replace","title":"Solver.replace","content":"Solver.replace \nreplace \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#centroid","title":"Solver.centroid","content":"Solver.centroid \ncentroid \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#stretch","title":"Solver.stretch","content":"Solver.stretch \nstretch \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#reflected","title":"Solver.reflected","content":"Solver.reflected \nreflected \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#expanded","title":"Solver.expanded","content":"Solver.expanded \nexpanded \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#contracted","title":"Solver.contracted","content":"Solver.contracted \ncontracted \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#shrink","title":"Solver.shrink","content":"Solver.shrink \nshrink \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#update","title":"Solver.update","content":"Solver.update \nupdate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#initialize","title":"Solver.initialize","content":"Solver.initialize \ninitialize \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#solve","title":"Solver.solve","content":"Solver.solve \nsolve \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver.html#swarm","title":"Solver.swarm","content":"Solver.swarm \nswarm \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-amoeba.html","title":"Amoeba","content":"Amoeba \n \nAmoeba.Best \nBest \nAmoeba.Worst \nWorst \nAmoeba.Size \nSize \nAmoeba.Dim \nDim \nAmoeba.Solutions \nSolutions","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-amoeba.html#Best","title":"Amoeba.Best","content":"Amoeba.Best \nBest \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-amoeba.html#Worst","title":"Amoeba.Worst","content":"Amoeba.Worst \nWorst \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-amoeba.html#Size","title":"Amoeba.Size","content":"Amoeba.Size \nSize \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-amoeba.html#Dim","title":"Amoeba.Dim","content":"Amoeba.Dim \nDim \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-amoeba.html#Solutions","title":"Amoeba.Solutions","content":"Amoeba.Solutions \nSolutions \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-settings.html","title":"Settings","content":"Settings \n \nSettings.Alpha \nAlpha \nSettings.Sigma \nSigma \nSettings.Gamma \nGamma \nSettings.Rho \nRho \nSettings.Size \nSize","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-settings.html#Alpha","title":"Settings.Alpha","content":"Settings.Alpha \nAlpha \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-settings.html#Sigma","title":"Settings.Sigma","content":"Settings.Sigma \nSigma \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-settings.html#Gamma","title":"Settings.Gamma","content":"Settings.Gamma \nGamma \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-settings.html#Rho","title":"Settings.Rho","content":"Settings.Rho \nRho \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-amoeba-solver-settings.html#Size","title":"Settings.Size","content":"Settings.Size \nSize \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-endconditions.html","title":"EndConditions","content":"EndConditions \n \nEndConditions.afterIteration \nafterIteration \nEndConditions.stationarySquaredJumpDistance\u0027 \nstationarySquaredJumpDistance\u0027 \nEndConditions.stationarySquaredJumpDistance \nstationarySquaredJumpDistance \nEndConditions.convergence \nconvergence","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-endconditions.html#afterIteration","title":"EndConditions.afterIteration","content":"EndConditions.afterIteration \nafterIteration \n End the optimisation procedure when a minimum number of iterations is exceeded.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-endconditions.html#stationarySquaredJumpDistance\u0027","title":"EndConditions.stationarySquaredJumpDistance\u0027","content":"EndConditions.stationarySquaredJumpDistance\u0027 \nstationarySquaredJumpDistance\u0027 \n An \u0060EndCondition\u0060 that calculates that segregates the most recent n results into\n five bins, and runs a regression to detect a temporal variation in the mean\n squared jumping distance (MSJD). The significance of the slope coefficient of a linear\n regression is assessed to determine if the MSJD is increasing through time for every\n parameter sequentially: if all p-values are \u003E0.1, then the \u0060EndCondition\u0060 is true.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-endconditions.html#stationarySquaredJumpDistance","title":"EndConditions.stationarySquaredJumpDistance","content":"EndConditions.stationarySquaredJumpDistance \nstationarySquaredJumpDistance \n True if there is no significant slope in mean squared jumping distances (MSJD),\n binned per 200 iterations and a regression of five bins.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-endconditions.html#convergence","title":"EndConditions.convergence","content":"EndConditions.convergence \nconvergence \n Convergence of results using the Gelman-Rubin Rhat statistic.\n * \u0060thin\u0060 - Only test for convergence at multiples of the following intervals (when all chains are ready).\n * \u0060chainCount\u0060 - The number of chains to test for convergence. This makes the agent wait until results for all chains are in.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html","title":"MonteCarlo","content":"MonteCarlo \n A module containing Monte Carlo Markov Chain (MCMC) methods for optimisation.\n An introduction to MCMC approaches is provided by\n [Reali, Priami, and Marchetti (2017)](https://doi.org/10.3389/fams.2017.00006) \nMonteCarlo.Filzbach \nFilzbach \nMonteCarlo.MetropolisWithinGibbs \nMetropolisWithinGibbs \nMonteCarlo.RandomWalk \nRandomWalk \nMonteCarlo.SimulatedAnnealing \nSimulatedAnnealing \nMonteCarlo.TuningMode \nTuningMode \nMonteCarlo.Frequency \nFrequency \nMonteCarlo.TuneMethod \nTuneMethod \nMonteCarlo.initialise \ninitialise \nMonteCarlo.isInvalidTheta \nisInvalidTheta \nMonteCarlo.tryGenerateTheta \ntryGenerateTheta \nMonteCarlo.constrainJump \nconstrainJump \nMonteCarlo.metropolisHastings\u0027 \nmetropolisHastings\u0027 \nMonteCarlo.toFn \ntoFn \nMonteCarlo.randomWalk\u0027 \nrandomWalk\u0027 \nMonteCarlo.randomWalk \nrandomWalk \nMonteCarlo.adaptiveMetropolis \nadaptiveMetropolis \nMonteCarlo.\u0060\u0060Adaptive-Metropolis-within Gibbs\u0060\u0060 \n\u0060\u0060Adaptive-Metropolis-within Gibbs\u0060\u0060 \nMonteCarlo.\u0060\u0060Metropolis-within Gibbs\u0060\u0060 \n\u0060\u0060Metropolis-within Gibbs\u0060\u0060 \nMonteCarlo.\u0060\u0060Automatic (Adaptive Diagnostics)\u0060\u0060 \n\u0060\u0060Automatic (Adaptive Diagnostics)\u0060\u0060","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#initialise","title":"MonteCarlo.initialise","content":"MonteCarlo.initialise \ninitialise \n Generate a random point from bounds specified as a \u0060Domain\u0060.\n A value for each dimension is drawn from a univariate normal distribution, assuming that\n the bounds represent the 99th percentiles of the distribution.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#isInvalidTheta","title":"MonteCarlo.isInvalidTheta","content":"MonteCarlo.isInvalidTheta \nisInvalidTheta \n Assesses if theta is valid based on the provided\n constraints.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#tryGenerateTheta","title":"MonteCarlo.tryGenerateTheta","content":"MonteCarlo.tryGenerateTheta \ntryGenerateTheta \n Attempts to generate random theta based on starting bounds\n for n tries. If the theta does not meet given constraints, or\n \u0060f\u0060 evaluates to NaN or an infinity then the algorithm tries again.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#constrainJump","title":"MonteCarlo.constrainJump","content":"MonteCarlo.constrainJump \nconstrainJump \n Jump in parameter space while reflecting constraints.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#metropolisHastings\u0027","title":"MonteCarlo.metropolisHastings\u0027","content":"MonteCarlo.metropolisHastings\u0027 \nmetropolisHastings\u0027 \n\u003Cpre\u003E A recursive metropolis hastings algorithm that ends when \u0060endCondition\u0060 returns true.\n\n **Parameters**\n * \u0060random\u0060 - \u0060System.Random\u0060 to be used for drawing from a uniform distribution.\n * \u0060writeOut\u0060 - side-effect function for handling \u0060LogEvent\u0060 items.\n * \u0060endCondition\u0060 - \u0060EndCondition\u0060 that dictates when the MH algorithm ends.\n * \u0060propose\u0060 - proposal \u0060\u0027scale -\u003E \u0027theta -\u003E \u0027theta\u0060 that generates a jump based on the scale value.\n * \u0060tune\u0060 - parameter of type \u0060int -\u003E (float * \u0027a) list -\u003E \u0027b -\u003E \u0027b\u0060, where \u0060int\u0060 is current iteration,\n * \u0060f\u0060 - an objective function, \u0060\u0027a -\u003E float\u0060, to optimise.\n * \u0060theta1\u0060 - initial position in parameter space of type \u0060\u0027a\u0060.\n * \u0060l1\u0060 - initial value of -log likelihood at theta1 in parameter space\n * \u0060d\u0060 - history of the chain, of type \u0060(float * \u0027a) list\u0060. Passing a list here allows continuation of a previous analysis.\n * \u0060scale\u0060 - a scale of type \u0060\u0027b\u0060, which is compatible with the scale tuning function \u0060tune\u0060\n\n **Output Type**\n * \u0060(float * \u0027a) list * \u0027b\u0060 - A tuple containing a list of results, and the final scale used in\n the analysis. The \u0060(float * \u0027a) list\u0060 represents a list of paired -log likelihood values with\n the proposed theta.\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#toFn","title":"MonteCarlo.toFn","content":"MonteCarlo.toFn \ntoFn \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#randomWalk\u0027","title":"MonteCarlo.randomWalk\u0027","content":"MonteCarlo.randomWalk\u0027 \nrandomWalk\u0027 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#randomWalk","title":"MonteCarlo.randomWalk","content":"MonteCarlo.randomWalk \nrandomWalk \n A Markov Chain Monte Carlo (MCMC) sampling algorithm that randomly \u0027walks\u0027\n through a n-dimensional posterior distribution of the parameter space.\n Specify \u0060tuningSteps\u0060 to prime the jump size before random walk.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#adaptiveMetropolis","title":"MonteCarlo.adaptiveMetropolis","content":"MonteCarlo.adaptiveMetropolis \nadaptiveMetropolis \n A Markov Chain Monte Carlo (MCMC) sampling algorithm that continually adjusts the\n covariance matrix based on the recently-sampled posterior distribution. Proposed\n jumps are therefore tuned to the recent history of accepted jumps.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#\u0060\u0060Adaptive-Metropolis-within Gibbs\u0060\u0060","title":"MonteCarlo.\u0060\u0060Adaptive-Metropolis-within Gibbs\u0060\u0060","content":"MonteCarlo.\u0060\u0060Adaptive-Metropolis-within Gibbs\u0060\u0060 \n\u0060\u0060Adaptive-Metropolis-within Gibbs\u0060\u0060 \n An adaptive Metropolis-within-Gibbs sampler that tunes the variance of\n each parameter according to the per-parameter acceptance rate.\n Reference: Bai Y (2009). \u201CAn Adaptive Directional Metropolis-within-Gibbs Algorithm.\u201D\n Technical Report in Department of Statistics at the University of Toronto.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#\u0060\u0060Metropolis-within Gibbs\u0060\u0060","title":"MonteCarlo.\u0060\u0060Metropolis-within Gibbs\u0060\u0060","content":"MonteCarlo.\u0060\u0060Metropolis-within Gibbs\u0060\u0060 \n\u0060\u0060Metropolis-within Gibbs\u0060\u0060 \n A non-adaptive Metropolis-within-gibbs Sampler. Each parameter is updated\n individually, unlike the random walk algorithm.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo.html#\u0060\u0060Automatic (Adaptive Diagnostics)\u0060\u0060","title":"MonteCarlo.\u0060\u0060Automatic (Adaptive Diagnostics)\u0060\u0060","content":"MonteCarlo.\u0060\u0060Automatic (Adaptive Diagnostics)\u0060\u0060 \n\u0060\u0060Automatic (Adaptive Diagnostics)\u0060\u0060 \n Implementation similar to that proposed by Yang and Rosenthal: \u0022Automatically Tuned\n General-Purpose MCMC via New Adaptive Diagnostics\u0022\n Reference: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.70.7198\u0026rep=rep1\u0026type=pdf","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach.html","title":"Filzbach","content":"Filzbach \n An adaptation of the Filzbach method (originally by Drew Purves) \nFilzbach.FilzbachSettings\u003C\u0027a\u003E \nFilzbachSettings\u003C\u0027a\u003E \nFilzbach.filzbach\u0027 \nfilzbach\u0027 \nFilzbach.filzbach \nfilzbach","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach.html#filzbach\u0027","title":"Filzbach.filzbach\u0027","content":"Filzbach.filzbach\u0027 \nfilzbach\u0027 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach.html#filzbach","title":"Filzbach.filzbach","content":"Filzbach.filzbach \nfilzbach \n A Monte Carlo Markov Chain sampler based on the \u0027Filzbach\u0027 algorithm from\n Microsoft Research Cambridge.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html","title":"FilzbachSettings\u003C\u0027a\u003E","content":"FilzbachSettings\u003C\u0027a\u003E \n \nFilzbachSettings\u003C\u0027a\u003E.TuneAfterChanges \nTuneAfterChanges \nFilzbachSettings\u003C\u0027a\u003E.MaxScaleChange \nMaxScaleChange \nFilzbachSettings\u003C\u0027a\u003E.MinScaleChange \nMinScaleChange \nFilzbachSettings\u003C\u0027a\u003E.BurnLength \nBurnLength","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html#TuneAfterChanges","title":"FilzbachSettings\u003C\u0027a\u003E.TuneAfterChanges","content":"FilzbachSettings\u003C\u0027a\u003E.TuneAfterChanges \nTuneAfterChanges \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html#MaxScaleChange","title":"FilzbachSettings\u003C\u0027a\u003E.MaxScaleChange","content":"FilzbachSettings\u003C\u0027a\u003E.MaxScaleChange \nMaxScaleChange \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html#MinScaleChange","title":"FilzbachSettings\u003C\u0027a\u003E.MinScaleChange","content":"FilzbachSettings\u003C\u0027a\u003E.MinScaleChange \nMinScaleChange \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html#BurnLength","title":"FilzbachSettings\u003C\u0027a\u003E.BurnLength","content":"FilzbachSettings\u003C\u0027a\u003E.BurnLength \nBurnLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-metropoliswithingibbs.html","title":"MetropolisWithinGibbs","content":"MetropolisWithinGibbs \n \nMetropolisWithinGibbs.propose \npropose \nMetropolisWithinGibbs.tune \ntune \nMetropolisWithinGibbs.core \ncore","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-metropoliswithingibbs.html#propose","title":"MetropolisWithinGibbs.propose","content":"MetropolisWithinGibbs.propose \npropose \n Propose a jump, while leaving all but one parameter value fixed","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-metropoliswithingibbs.html#tune","title":"MetropolisWithinGibbs.tune","content":"MetropolisWithinGibbs.tune \ntune \n Tune variance of a parameter based on its acceptance rate.\n The magnitude of tuning reduces as more batches have been run.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-metropoliswithingibbs.html#core","title":"MetropolisWithinGibbs.core","content":"MetropolisWithinGibbs.core \ncore \n Adaptive-metropolis-within-Gibbs algorithm, which can work in both adaptive and fixed modes","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-randomwalk.html","title":"RandomWalk","content":"RandomWalk \n \nRandomWalk.randomWalk\u0027 \nrandomWalk\u0027","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-randomwalk.html#randomWalk\u0027","title":"RandomWalk.randomWalk\u0027","content":"RandomWalk.randomWalk\u0027 \nrandomWalk\u0027 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html","title":"SimulatedAnnealing","content":"SimulatedAnnealing \n A meta-heuristic that approximates a global optimium by\n simulating slow cooling as a slow decrease in the probability\n of temporarily accepting worse solutions. \nSimulatedAnnealing.CoolingSchemes \nCoolingSchemes \nSimulatedAnnealing.EndConditions \nEndConditions \nSimulatedAnnealing.Machines \nMachines \nSimulatedAnnealing.AnnealSettings\u003C\u0027a\u003E \nAnnealSettings\u003C\u0027a\u003E \nSimulatedAnnealing.tryMove \ntryMove \nSimulatedAnnealing.markovChain \nmarkovChain \nSimulatedAnnealing.anneal \nanneal \nSimulatedAnnealing.heat \nheat \nSimulatedAnnealing.simulatedAnnealing \nsimulatedAnnealing \nSimulatedAnnealing.classicalSimulatedAnnealing \nclassicalSimulatedAnnealing \nSimulatedAnnealing.fastSimulatedAnnealing \nfastSimulatedAnnealing","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html#tryMove","title":"SimulatedAnnealing.tryMove","content":"SimulatedAnnealing.tryMove \ntryMove \n Jump based on a proposal function and probability function","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html#markovChain","title":"SimulatedAnnealing.markovChain","content":"SimulatedAnnealing.markovChain \nmarkovChain \n Run a homogenous Markov chain recursively until an end condition - \u0060atEnd\u0060 - is met.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html#anneal","title":"SimulatedAnnealing.anneal","content":"SimulatedAnnealing.anneal \nanneal \n Cool between homoegenous markov chains according to \u0060cool\u0060 schedule.\n Each anneal recursion begins from the end of the previous markov chain.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html#heat","title":"SimulatedAnnealing.heat","content":"SimulatedAnnealing.heat \nheat \n Heat up temperature until acceptance rate of bad moves is above the threshold \u0060endAcceptanceRate\u0060.\n If it becomes impossible to propose a move during heating, then heating ends.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html#simulatedAnnealing","title":"SimulatedAnnealing.simulatedAnnealing","content":"SimulatedAnnealing.simulatedAnnealing \nsimulatedAnnealing \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html#classicalSimulatedAnnealing","title":"SimulatedAnnealing.classicalSimulatedAnnealing","content":"SimulatedAnnealing.classicalSimulatedAnnealing \nclassicalSimulatedAnnealing \n Candidate distribution: Gaussian univariate []\n Probability: Boltzmann Machine","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html#fastSimulatedAnnealing","title":"SimulatedAnnealing.fastSimulatedAnnealing","content":"SimulatedAnnealing.fastSimulatedAnnealing \nfastSimulatedAnnealing \n Candidate distribution: Cauchy univariate []\n Probability: Bottzmann Machine","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-coolingschemes.html","title":"CoolingSchemes","content":"CoolingSchemes \n Cooling schemes dictate the conditions under which the temperature is cooled\n during simulated annealing. \nCoolingSchemes.exponential \nexponential \nCoolingSchemes.fastCauchyCoolingSchedule \nfastCauchyCoolingSchedule","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-coolingschemes.html#exponential","title":"CoolingSchemes.exponential","content":"CoolingSchemes.exponential \nexponential \n Commonly set alpha to 0.95.\n Tk is the temperature after k cooling iterations.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-coolingschemes.html#fastCauchyCoolingSchedule","title":"CoolingSchemes.fastCauchyCoolingSchedule","content":"CoolingSchemes.fastCauchyCoolingSchedule \nfastCauchyCoolingSchedule \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html","title":"EndConditions","content":"EndConditions \n \nEndConditions.defaultTolerance \ndefaultTolerance \nEndConditions.stoppedImproving \nstoppedImproving \nEndConditions.noImprovement \nnoImprovement \nEndConditions.improvementCount \nimprovementCount","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html#defaultTolerance","title":"EndConditions.defaultTolerance","content":"EndConditions.defaultTolerance \ndefaultTolerance \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html#stoppedImproving","title":"EndConditions.stoppedImproving","content":"EndConditions.stoppedImproving \nstoppedImproving \n Given a list of solutions, which are ordered most recent first,\n returns \u0060true\u0060 if there are at least \u0060chains\u0060 recent results, and\n the change within the recent results is no more than \u0060tolerance\u0060.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html#noImprovement","title":"EndConditions.noImprovement","content":"EndConditions.noImprovement \nnoImprovement \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html#improvementCount","title":"EndConditions.improvementCount","content":"EndConditions.improvementCount \nimprovementCount \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-machines.html","title":"Machines","content":"Machines \n \nMachines.boltzmann \nboltzmann","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-machines.html#boltzmann","title":"Machines.boltzmann","content":"Machines.boltzmann \nboltzmann \n e = new minus old energy (or -logL)","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html","title":"AnnealSettings\u003C\u0027a\u003E","content":"AnnealSettings\u003C\u0027a\u003E \n Represents configurable settings of an annealing procedure\n that supports (a) heating, followed by (b) annealing. \nAnnealSettings\u003C\u0027a\u003E.Default \nDefault \nAnnealSettings\u003C\u0027a\u003E.HeatStepLength \nHeatStepLength \nAnnealSettings\u003C\u0027a\u003E.HeatRamp \nHeatRamp \nAnnealSettings\u003C\u0027a\u003E.TemperatureCeiling \nTemperatureCeiling \nAnnealSettings\u003C\u0027a\u003E.BoilingAcceptanceRate \nBoilingAcceptanceRate \nAnnealSettings\u003C\u0027a\u003E.InitialTemperature \nInitialTemperature \nAnnealSettings\u003C\u0027a\u003E.PreTuneLength \nPreTuneLength \nAnnealSettings\u003C\u0027a\u003E.TuneLength \nTuneLength \nAnnealSettings\u003C\u0027a\u003E.TuneN \nTuneN \nAnnealSettings\u003C\u0027a\u003E.AnnealStepLength \nAnnealStepLength","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#Default","title":"AnnealSettings\u003C\u0027a\u003E.Default","content":"AnnealSettings\u003C\u0027a\u003E.Default \nDefault \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#HeatStepLength","title":"AnnealSettings\u003C\u0027a\u003E.HeatStepLength","content":"AnnealSettings\u003C\u0027a\u003E.HeatStepLength \nHeatStepLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#HeatRamp","title":"AnnealSettings\u003C\u0027a\u003E.HeatRamp","content":"AnnealSettings\u003C\u0027a\u003E.HeatRamp \nHeatRamp \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#TemperatureCeiling","title":"AnnealSettings\u003C\u0027a\u003E.TemperatureCeiling","content":"AnnealSettings\u003C\u0027a\u003E.TemperatureCeiling \nTemperatureCeiling \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#BoilingAcceptanceRate","title":"AnnealSettings\u003C\u0027a\u003E.BoilingAcceptanceRate","content":"AnnealSettings\u003C\u0027a\u003E.BoilingAcceptanceRate \nBoilingAcceptanceRate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#InitialTemperature","title":"AnnealSettings\u003C\u0027a\u003E.InitialTemperature","content":"AnnealSettings\u003C\u0027a\u003E.InitialTemperature \nInitialTemperature \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#PreTuneLength","title":"AnnealSettings\u003C\u0027a\u003E.PreTuneLength","content":"AnnealSettings\u003C\u0027a\u003E.PreTuneLength \nPreTuneLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#TuneLength","title":"AnnealSettings\u003C\u0027a\u003E.TuneLength","content":"AnnealSettings\u003C\u0027a\u003E.TuneLength \nTuneLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#TuneN","title":"AnnealSettings\u003C\u0027a\u003E.TuneN","content":"AnnealSettings\u003C\u0027a\u003E.TuneN \nTuneN \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html#AnnealStepLength","title":"AnnealSettings\u003C\u0027a\u003E.AnnealStepLength","content":"AnnealSettings\u003C\u0027a\u003E.AnnealStepLength \nAnnealStepLength \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html","title":"TuningMode","content":"TuningMode \n \nTuningMode.tuneScale \ntuneScale \nTuningMode.scaleFactor \nscaleFactor \nTuningMode.tuneCovariance \ntuneCovariance \nTuningMode.covarianceMatrix \ncovarianceMatrix \nTuningMode.computeCovariance \ncomputeCovariance \nTuningMode.samplesToMatrix \nsamplesToMatrix \nTuningMode.defaultCovariance \ndefaultCovariance \nTuningMode.covarianceFromBounds \ncovarianceFromBounds \nTuningMode.covarianceFromSigmas \ncovarianceFromSigmas \nTuningMode.covariance \ncovariance \nTuningMode.dual \ndual \nTuningMode.scaleOnly \nscaleOnly \nTuningMode.covarianceOnly \ncovarianceOnly \nTuningMode.covarianceAllTime \ncovarianceAllTime \nTuningMode.dualTotalHistory \ndualTotalHistory \nTuningMode.none \nnone","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#tuneScale","title":"TuningMode.tuneScale","content":"TuningMode.tuneScale \ntuneScale \n Find an appropriate scale factor for a standard deviation and its acceptance rate.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#scaleFactor","title":"TuningMode.scaleFactor","content":"TuningMode.scaleFactor \nscaleFactor \n Modifies a scale factor depending on","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#tuneCovariance","title":"TuningMode.tuneCovariance","content":"TuningMode.tuneCovariance \ntuneCovariance \n Tunes a covariance matrix based on recent samples.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#covarianceMatrix","title":"TuningMode.covarianceMatrix","content":"TuningMode.covarianceMatrix \ncovarianceMatrix \n Generate a covariance matrix","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#computeCovariance","title":"TuningMode.computeCovariance","content":"TuningMode.computeCovariance \ncomputeCovariance \n Calculates the covariance of a given matrix","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#samplesToMatrix","title":"TuningMode.samplesToMatrix","content":"TuningMode.samplesToMatrix \nsamplesToMatrix \n Parameters to matrix","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#defaultCovariance","title":"TuningMode.defaultCovariance","content":"TuningMode.defaultCovariance \ndefaultCovariance \n The starting covariance matrix for parameters in a multivariate distribution","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#covarianceFromBounds","title":"TuningMode.covarianceFromBounds","content":"TuningMode.covarianceFromBounds \ncovarianceFromBounds \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#covarianceFromSigmas","title":"TuningMode.covarianceFromSigmas","content":"TuningMode.covarianceFromSigmas \ncovarianceFromSigmas \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#covariance","title":"TuningMode.covariance","content":"TuningMode.covariance \ncovariance \n Tune previously observed covariance based on most recent period","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#dual","title":"TuningMode.dual","content":"TuningMode.dual \ndual \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#scaleOnly","title":"TuningMode.scaleOnly","content":"TuningMode.scaleOnly \nscaleOnly \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#covarianceOnly","title":"TuningMode.covarianceOnly","content":"TuningMode.covarianceOnly \ncovarianceOnly \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#covarianceAllTime","title":"TuningMode.covarianceAllTime","content":"TuningMode.covarianceAllTime \ncovarianceAllTime \n Tune previously observed covariance based on all time","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#dualTotalHistory","title":"TuningMode.dualTotalHistory","content":"TuningMode.dualTotalHistory \ndualTotalHistory \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tuningmode.html#none","title":"TuningMode.none","content":"TuningMode.none \nnone \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-frequency.html","title":"Frequency","content":"Frequency \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tunemethod.html","title":"TuneMethod","content":"TuneMethod \n \nTuneMethod.Covariance \nCovariance \nTuneMethod.Scale \nScale \nTuneMethod.CovarianceWithScale \nCovarianceWithScale \nTuneMethod.CovarianceWithScaleTotalHistory \nCovarianceWithScaleTotalHistory","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tunemethod.html#Covariance","title":"TuneMethod.Covariance","content":"TuneMethod.Covariance \nCovariance \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tunemethod.html#Scale","title":"TuneMethod.Scale","content":"TuneMethod.Scale \nScale \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tunemethod.html#CovarianceWithScale","title":"TuneMethod.CovarianceWithScale","content":"TuneMethod.CovarianceWithScale \nCovarianceWithScale \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-montecarlo-tunemethod.html#CovarianceWithScaleTotalHistory","title":"TuneMethod.CovarianceWithScaleTotalHistory","content":"TuneMethod.CovarianceWithScaleTotalHistory \nCovarianceWithScaleTotalHistory \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-none.html","title":"None","content":"None \n \nNone.none \nnone","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-none.html#none","title":"None.none","content":"None.none \nnone \n An optimisation function that calculates the value of \u0060f\u0060 using\n the given bounds. Use when optimisation of the objective is not required.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-optimisationerror.html","title":"OptimisationError","content":"OptimisationError \n \nOptimisationError.OutOfBounds \nOutOfBounds \nOptimisationError.ModelError \nModelError \nOptimisationError.LikelihoodError \nLikelihoodError","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-optimisationerror.html#OutOfBounds","title":"OptimisationError.OutOfBounds","content":"OptimisationError.OutOfBounds \nOutOfBounds \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-optimisationerror.html#ModelError","title":"OptimisationError.ModelError","content":"OptimisationError.ModelError \nModelError \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-optimisationerror.html#LikelihoodError","title":"OptimisationError.LikelihoodError","content":"OptimisationError.LikelihoodError \nLikelihoodError \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-bounds.html","title":"Bounds","content":"Bounds \n Differences in likelihood for different confidence intervals\n based on a chi squared distribution. \nBounds.lowerBound \nlowerBound \nBounds.upperBound \nupperBound","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-bounds.html#lowerBound","title":"Bounds.lowerBound","content":"Bounds.lowerBound \nlowerBound \n The difference in likelihood at 68% confidence","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-bounds.html#upperBound","title":"Bounds.upperBound","content":"Bounds.upperBound \nupperBound \n The difference in likelihood at 95% confidence","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood.html","title":"ProfileLikelihood","content":"ProfileLikelihood \n Given a maximum likelihood estimate (MLE), the profile likelihood method\n runs a Monte Carlo algorithm that samples around the MLE. The range for\n each parameter is discovered at 95% and 68% confidence based on a chi squared\n distribution. \nProfileLikelihood.CustomOptimisationMethod \nCustomOptimisationMethod \nProfileLikelihood.EstimateFunction\u003C\u0027data, \u0027time, \u0027subject\u003E \nEstimateFunction\u003C\u0027data, \u0027time, \u0027subject\u003E \nProfileLikelihood.interval \ninterval \nProfileLikelihood.profile \nprofile","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood.html#interval","title":"ProfileLikelihood.interval","content":"ProfileLikelihood.interval \ninterval \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood.html#profile","title":"ProfileLikelihood.profile","content":"ProfileLikelihood.profile \nprofile \n The profile likelihood method samples the likelihood space\n around the Maximum Likelihood Estimate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod.html","title":"CustomOptimisationMethod","content":"CustomOptimisationMethod \n \nCustomOptimisationMethod.TuneSettings \nTuneSettings \nCustomOptimisationMethod.tunedSearch \ntunedSearch \nCustomOptimisationMethod.classic \nclassic","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod.html#tunedSearch","title":"CustomOptimisationMethod.tunedSearch","content":"CustomOptimisationMethod.tunedSearch \ntunedSearch \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod.html#classic","title":"CustomOptimisationMethod.classic","content":"CustomOptimisationMethod.classic \nclassic \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html","title":"TuneSettings","content":"TuneSettings \n \nTuneSettings.Default \nDefault \nTuneSettings.MinimumSampleSize \nMinimumSampleSize \nTuneSettings.InitialScale \nInitialScale \nTuneSettings.KMax \nKMax \nTuneSettings.TuneN \nTuneN","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html#Default","title":"TuneSettings.Default","content":"TuneSettings.Default \nDefault \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html#MinimumSampleSize","title":"TuneSettings.MinimumSampleSize","content":"TuneSettings.MinimumSampleSize \nMinimumSampleSize \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html#InitialScale","title":"TuneSettings.InitialScale","content":"TuneSettings.InitialScale \nInitialScale \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html#KMax","title":"TuneSettings.KMax","content":"TuneSettings.KMax \nKMax \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html#TuneN","title":"TuneSettings.TuneN","content":"TuneSettings.TuneN \nTuneN \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-estimatefunction-3.html","title":"EstimateFunction\u003C\u0027data, \u0027time, \u0027subject\u003E","content":"EstimateFunction\u003C\u0027data, \u0027time, \u0027subject\u003E \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-confidenceinterval.html","title":"ConfidenceInterval","content":"ConfidenceInterval \n\n \n The 95% and 68% confidence interval around a point estimate.\n \nConfidenceInterval.95% \n95% \nConfidenceInterval.68% \n68% \nConfidenceInterval.Estimate \nEstimate","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-confidenceinterval.html#95%","title":"ConfidenceInterval.95%","content":"ConfidenceInterval.95% \n95% \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-confidenceinterval.html#68%","title":"ConfidenceInterval.68%","content":"ConfidenceInterval.68% \n68% \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-confidenceinterval.html#Estimate","title":"ConfidenceInterval.Estimate","content":"ConfidenceInterval.Estimate \nEstimate \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-interval.html","title":"Interval","content":"Interval \n \nInterval.Lower \nLower \nInterval.Upper \nUpper","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-interval.html#Lower","title":"Interval.Lower","content":"Interval.Lower \nLower \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-interval.html#Upper","title":"Interval.Upper","content":"Interval.Upper \nUpper \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-optimisationeventstash.html","title":"OptimisationEventStash","content":"OptimisationEventStash \n Keeps a list of all optimisation events that occur for further analysis. \nOptimisationEventStash.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nOptimisationEventStash.GetAll \nGetAll \nOptimisationEventStash.SaveEvent \nSaveEvent","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-optimisationeventstash.html#\u0060\u0060.ctor\u0060\u0060","title":"OptimisationEventStash.\u0060\u0060.ctor\u0060\u0060","content":"OptimisationEventStash.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-optimisationeventstash.html#GetAll","title":"OptimisationEventStash.GetAll","content":"OptimisationEventStash.GetAll \nGetAll \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-optimisation-confidenceinterval-optimisationeventstash.html#SaveEvent","title":"OptimisationEventStash.SaveEvent","content":"OptimisationEventStash.SaveEvent \nSaveEvent \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-convergence.html","title":"Convergence","content":"Convergence \n Statistics to measure the convergence of multiple trajectories,\n for example for chains in a Monte Carlo analysis. \nConvergence.GelmanRubin \nGelmanRubin","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-convergence-gelmanrubin.html","title":"GelmanRubin","content":"GelmanRubin \n \nGelmanRubin.rHat \nrHat","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-convergence-gelmanrubin.html#rHat","title":"GelmanRubin.rHat","content":"GelmanRubin.rHat \nrHat \n R-hat tends downwards to one as convergence increases. It is often\n accepted that a value below 1.1 indicates convergence for chains\n within a Monte Carlo Markov Chain analysis.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions.html","title":"Distributions","content":"Distributions \n \nDistributions.ContinuousUniform \nContinuousUniform \nDistributions.MutlivariateNormal \nMutlivariateNormal \nDistributions.Normal \nNormal","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-continuousuniform.html","title":"ContinuousUniform","content":"ContinuousUniform \n \nContinuousUniform.draw \ndraw","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-continuousuniform.html#draw","title":"ContinuousUniform.draw","content":"ContinuousUniform.draw \ndraw \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-mutlivariatenormal.html","title":"MutlivariateNormal","content":"MutlivariateNormal \n \nMutlivariateNormal.mapply \nmapply \nMutlivariateNormal.sample\u0027 \nsample\u0027 \nMutlivariateNormal.sample \nsample","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-mutlivariatenormal.html#mapply","title":"MutlivariateNormal.mapply","content":"MutlivariateNormal.mapply \nmapply \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-mutlivariatenormal.html#sample\u0027","title":"MutlivariateNormal.sample\u0027","content":"MutlivariateNormal.sample\u0027 \nsample\u0027 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-mutlivariatenormal.html#sample","title":"MutlivariateNormal.sample","content":"MutlivariateNormal.sample \nsample \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-normal.html","title":"Normal","content":"Normal \n \nNormal.draw \ndraw","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-distributions-normal.html#draw","title":"Normal.draw","content":"Normal.draw \ndraw \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-interpolate.html","title":"Interpolate","content":"Interpolate \n \nInterpolate.bilinear \nbilinear \nInterpolate.lower \nlower \nInterpolate.upper \nupper","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-interpolate.html#bilinear","title":"Interpolate.bilinear","content":"Interpolate.bilinear \nbilinear \n Interpolates between two data points, for a given time \u0060t\u0060.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-interpolate.html#lower","title":"Interpolate.lower","content":"Interpolate.lower \nlower \n Use the previous point","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-interpolate.html#upper","title":"Interpolate.upper","content":"Interpolate.upper \nupper \n Use the next point","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-regression.html","title":"Regression","content":"Regression \n \nRegression.pValueForLinearSlopeCoefficient \npValueForLinearSlopeCoefficient","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-regression.html#pValueForLinearSlopeCoefficient","title":"Regression.pValueForLinearSlopeCoefficient","content":"Regression.pValueForLinearSlopeCoefficient \npValueForLinearSlopeCoefficient \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-rootfinding.html","title":"RootFinding","content":"RootFinding \n Statistics for determining the root of non-linear equations. \nRootFinding.secant \nsecant \nRootFinding.bisect \nbisect","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-rootfinding.html#secant","title":"RootFinding.secant","content":"RootFinding.secant \nsecant \n Secant method for finding root of non-linear equations. This method is faster than bisection, but may not converge on a root.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-rootfinding.html#bisect","title":"RootFinding.bisect","content":"RootFinding.bisect \nbisect \n Bisect method for finding root of non-linear equations.","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-trendanalysis.html","title":"TrendAnalysis","content":"TrendAnalysis \n Statistics to determine whether there are trends within series. \nTrendAnalysis.theilSen \ntheilSen","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-statistics-trendanalysis.html#theilSen","title":"TrendAnalysis.theilSen","content":"TrendAnalysis.theilSen \ntheilSen \n TODO Finish implementation","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration.html","title":"Orchestration","content":"Orchestration \n Queue functions to manage many work packages in parallel.\n [ Inspired by Tom Petricek: http://fssnip.net/nX ] \nOrchestration.OrchestrationAgent \nOrchestrationAgent \nOrchestration.OrchestrationMessage \nOrchestrationMessage \nOrchestration.print \nprint","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration.html#print","title":"Orchestration.print","content":"Orchestration.print \nprint \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationagent.html","title":"OrchestrationAgent","content":"OrchestrationAgent \n The \u0060OrchestrationAgent\u0060 queues work items of the type \u0060Async\u003CEstimationResult\u003E\u0060, which\n are run in parallel up to a total of \u0060maxSimultaneous\u0060 at one time. \nOrchestrationAgent.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nOrchestrationAgent.Post \nPost \nOrchestrationAgent.TryGetResult \nTryGetResult","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationagent.html#\u0060\u0060.ctor\u0060\u0060","title":"OrchestrationAgent.\u0060\u0060.ctor\u0060\u0060","content":"OrchestrationAgent.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationagent.html#Post","title":"OrchestrationAgent.Post","content":"OrchestrationAgent.Post \nPost \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationagent.html#TryGetResult","title":"OrchestrationAgent.TryGetResult","content":"OrchestrationAgent.TryGetResult \nTryGetResult \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationmessage.html","title":"OrchestrationMessage","content":"OrchestrationMessage \n \nOrchestrationMessage.StartWorkPackage \nStartWorkPackage \nOrchestrationMessage.StartDependentWorkPackages \nStartDependentWorkPackages \nOrchestrationMessage.Finished \nFinished \nOrchestrationMessage.WorkFailed \nWorkFailed \nOrchestrationMessage.WorkCancelled \nWorkCancelled","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationmessage.html#StartWorkPackage","title":"OrchestrationMessage.StartWorkPackage","content":"OrchestrationMessage.StartWorkPackage \nStartWorkPackage \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationmessage.html#StartDependentWorkPackages","title":"OrchestrationMessage.StartDependentWorkPackages","content":"OrchestrationMessage.StartDependentWorkPackages \nStartDependentWorkPackages \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationmessage.html#Finished","title":"OrchestrationMessage.Finished","content":"OrchestrationMessage.Finished \nFinished \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationmessage.html#WorkFailed","title":"OrchestrationMessage.WorkFailed","content":"OrchestrationMessage.WorkFailed \nWorkFailed \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/reference/bristlecone-workflow-orchestration-orchestrationmessage.html#WorkCancelled","title":"OrchestrationMessage.WorkCancelled","content":"OrchestrationMessage.WorkCancelled \nWorkCancelled \n","headings":[],"type":"apiDocs"},{"uri":"https://acm.im/bristlecone/index.html","title":"Index","content":"\nBristlecone\nBristlecone is a library for conducting model-fitting and model-selection analyses on time-series data.\nAlthough originally designed for the investigation of non-linear dynamics within ecological\nand environmental sciences, the library can be used across finance, econometrics and\nother fields that apply non-linear modelling techniques.\nQuick Start\nBristlecone is an F# .NET library. You can easily get started by installing\nthe latest .NET SDK. You may then simply use the\nBristlecone package in a script, application, or library.\nThe nuget package is available here.\nTo use in an F# script\n\nExample\nThis example demonstrates the layout of a model when defined in Bristlecone.\nopen Bristlecone // Opens Bristlecone core library and estimation engine\nopen Bristlecone.Language // Open the language for writing Bristlecone models\n\nlet hypothesis =\n\n let vonBertalanffy = \n Parameter \u0026quot;\u03B7\u0026quot; * This ** Parameter \u0026quot;\u03B2\u0026quot; - Parameter \u0026quot;\u03BA\u0026quot; * This\n\n Model.empty\n |\u0026gt; Model.addEquation \u0026quot;mass\u0026quot; vonBertalanffy\n |\u0026gt; Model.estimateParameter \u0026quot;\u03B7\u0026quot; noConstraints 0.50 1.50 \n |\u0026gt; Model.estimateParameter \u0026quot;\u03B2\u0026quot; noConstraints 0.01 1.00\n |\u0026gt; Model.estimateParameter \u0026quot;\u03BA\u0026quot; noConstraints 0.01 1.00 \n |\u0026gt; Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \u0026quot;mass\u0026quot; ])\n |\u0026gt; Model.compile\n\nlet engine = \n Bristlecone.mkContinuous\n |\u0026gt; Bristlecone.withCustomOptimisation (Optimisation.Amoeba.swarm 5 20 Optimisation.Amoeba.Solver.Default)\n\nlet testSettings = Bristlecone.Test.TestSettings\u0026lt;float\u0026gt;.Default\nlet testResult = Bristlecone.testModel engine testSettings hypothesis\n\nval hypothesis: Bristlecone.ModelSystem.ModelSystem =\n { Parameters =\n Pool\n (map\n [(ShortCode \u0022\u03B2\u0022,\n Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0)));\n (ShortCode \u0022\u03B7\u0022,\n Parameter (Unconstrained, Transform, NotEstimated (0.5, 1.5)));\n (ShortCode \u0022\u03BA\u0022,\n Parameter (Unconstrained, Transform, NotEstimated (0.01, 1.0)))])\n Equations = map [(ShortCode \u0022mass\u0022, \u0026lt;fun:Invoke@3682-2\u0026gt;)]\n Measures = map []\n Likelihood = \u0026lt;fun:hypothesis@14\u0026gt; }\nval engine: Bristlecone.EstimationEngine.EstimationEngine\u0026lt;float,float\u0026gt; =\n { TimeHandling = Continuous \u0026lt;fun:mkContinuous@23\u0026gt;\n OptimiseWith = InTransformedSpace \u0026lt;fun:swarm@1458\u0026gt;\n Conditioning = RepeatFirstDataPoint\n LogTo = \u0026lt;fun:logger@45-5\u0026gt;\n Random = MathNet.Numerics.Random.MersenneTwister }\nval testSettings: Bristlecone.Test.TestSettings\u0026lt;float\u0026gt; =\n { TimeSeriesLength = 30\n StartValues = map []\n EndCondition = \u0026lt;fun:get_Default@78-3\u0026gt;\n GenerationRules = []\n NoiseGeneration = \u0026lt;fun:get_Default@80-4\u0026gt;\n EnvironmentalData = map []\n Resolution = Years PositiveInt 1\n Random = MathNet.Numerics.Random.MersenneTwister\n StartDate = 1/1/1970 12:00:00 AM\n Attempts = 50000 }\nval testResult: Result\u0026lt;Bristlecone.Test.TestResult,string\u0026gt; =\n Error\n \u0022You must specify a start point for the following equations: [\u0022\u002B[17 chars]\nIn the above snippet, a von Bertalanffy growth model is defined as a hypothesis to test. We then create an EstimationEngine, which defines the methodology for model-fitting. In Bristlecone, an EstimationEngine is created and customised using the F# forward pipe operator (for R users this may be familiar; this concept was adapted into the dplyr %\u0026gt;% operator). The call to testModel generates random test data, and assesses whether the model-fitting method can accurately estimate known parameters.\nSamples \u0026amp; documentation\nAn API reference is automatically generated from XML comments in the library implementation.\nIn addition, this documentation includes step-by-step example analyses. Each analysis may be downloaded\nas an F# script or Jupyter notebook using the buttons at the top of each example page.\n\nThe predator-prey example covers basic model-fitting with Bristlecone.\n\nThe shrub-resource example is a more\ncomprehensive example that covers model-fitting and model-selection (MFMS) with Bristlecone.\n\n\nThe API Reference contains automatically generated documentation for all types, modules\nand functions in the library. This includes additional brief samples on using most of the\nfunctions.\n\n\nContributing and copyright\nThe project is hosted on GitHub where you can report issues, fork\nthe project and submit pull requests. If you\u0027re adding a new public API, please also\nconsider adding samples that can be turned into a documentation. You might\nalso want to read the library design notes to understand how it works.\nThe library is available under an MIT license, which allows modification and\nredistribution for both commercial and non-commercial purposes. For more information see the\nLicense file in the GitHub repository.\n","headings":["Bristlecone","Quick Start","To use in an F# script","Example","Samples \u0026amp; documentation","Contributing and copyright"],"type":"content"},{"uri":"https://acm.im/bristlecone/confidence-intervals.html","title":"Calculating Confidence Intervals","content":"\nCalculating Confidence Intervals\nBristlecone includes functions to calculate confidence intervals based\non a profile likelihood method. Given the minimum -log likelihood, the\nprofile likelihood method samples the parameter space around this point.\nThe range sampled for each parameter is discovered at 95% and 68%\nconfidence based on a chi squared distribution.\nThese functions are included in the Bristlecone.Optimisation.ConfidenceInterval module.\nAn example of their use is given below:\nopen Bristlecone\nopen Bristlecone.Optimisation\nopen Bristlecone.Data\n\n// // fitFn = \n// fun engine dataset hypothesis result -\u0026gt;\n\n// // The function used to fit the model, which unless an\n// // advanced scenario is usually Bristlecone.fit\n// let fitFn = Bristlecone.fit\n\n// // The number of jumps to perform in parameter space\n// let n = 10000\n\n// let ci = ConfidenceInterval.ProfileLikelihood.profile fitFn engine dataset hypothesis n result\n\n// // Optionally, save the result\n// let saveDir = \u0026quot;/some/save/dir\u0026quot;\n// let subjectName = \u0026quot;some subject\u0026quot;\n// let modelId = \u0026quot;some model hypothesis\u0026quot;\n// Confidence.save saveDir subjectName modelId result.ResultId ci\n\n","headings":["Calculating Confidence Intervals"],"type":"content"},{"uri":"https://acm.im/bristlecone/model-selection.html","title":"Model Selection","content":"\nModel Selection\nThrough Model Selection, alternative model hypothesis results are\ncompeted to determine which hypothesis is best explained by the underlying\ndata. Before conducting model selection, you should be familiar with the benefits\nand limitations of alternative model selection statistics.\nAkaike Weights\nTo calculate Akaike weights for a set of hypotheses, you must first obtain\nyour results by either loading in saved result files, or running models directly.\nOnce you have obtained your results, weights can be saved after calculation\nby using the functions within the Bristlecone.Data namespace as below:\nopen Bristlecone\n\nfun results -\u0026gt;\n\n let resultsDirectory = \u0026quot;some/results/directory/\u0026quot;\n\n let weights =\n results\n |\u0026gt; ModelSelection.weights\n\n // Save the weights into a csv file\n weights\n |\u0026gt; Data.ModelSelection.save resultsDirectory\n\n","headings":["Model Selection","Akaike Weights"],"type":"content"},{"uri":"https://acm.im/bristlecone/dendro.html","title":"Dendroecology","content":"\nBristlecone\nFull documentation is forthcoming.\n\n \n \n \n The Bristlecone.Dendro library can be installed from NuGet:\n $ dotnet add package Bristlecone.Dendro\n \n \n \n\n","headings":["Bristlecone"],"type":"content"},{"uri":"https://acm.im/bristlecone/model.html","title":"Defining a Hypothesis (or Model System)","content":"\nDefining a Hypothesis (or Model System)\nIn Bristlecone, a ModelSystem represents combination\nof mathematical models and their estimatable parameters\nthat can be used within model-fitting and model-selection.\nA ModelSystem is defined by:\n\nat least one equation;\nat least one parameter to estimate;\na likelihood function; and\noptionally, measurement equations.\n\nTo build a ModelSystem, first open the Bristlecone language:\nopen Bristlecone // Opens Bristlecone core library and estimation engine\nopen Bristlecone.Language // Open the language for writing Bristlecone models\n\nSecond, define the parts of your hypothesis. In this example,\nwe will define a simple model of population growth:\nNote: refer to the section on writing models for help writing\nBristlecone expressions.\nlet \u0060\u0060dN/dt\u0060\u0060 = Parameter \u0026quot;r\u0026quot; * This * (Constant 1. - (This / Parameter \u0026quot;K\u0026quot;))\n\nFrom the above code, our model is compiled into the following internal representation:\nMultiply\n [Multiply [Parameter \u0022r\u0022; This];\n Subtract (Constant 1.0, Divide (This, Parameter \u0022K\u0022))]\nOur model of the change in N (population count) over time has two estimatable parameters defined using the Parameter term,\nwhich are r (the intrinsic growth rate of the population)\nand K (the carrying capacity of the population).\nNext, we need to create our ModelSystem by using the helper functions\nthat can be found under Model.*.\nIn this example, we will use a sum-of-squares measure to determine\nthe goodness-of-fit rather than a likelihood function. A selection of\nlikelihood functions, including sum-of-squares functions, are included\nin Bristlecone within the ModelLibrary module.\nThe ModelSystem can be created with forward pipes (|\u0026gt;) as follows:\nlet hypothesis =\n Model.empty\n |\u0026gt; Model.addEquation \u0026quot;N\u0026quot; \u0060\u0060dN/dt\u0060\u0060\n |\u0026gt; Model.estimateParameter \u0026quot;r\u0026quot; noConstraints 0.10 5.00 \n |\u0026gt; Model.estimateParameter \u0026quot;K\u0026quot; noConstraints 50.0 150.\n |\u0026gt; Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \u0026quot;N\u0026quot; ])\n |\u0026gt; Model.compile\n\nIn the above code, we first start with an empty model system,\nModel.empty. We then add each component with a short code to\nrepresent it, and finally call Model.compile. The Model.compile\nfunction checks the validity of the model in terms of duplicate short codes,\nmaking sure all parameters are set to be estimated, and that all the\nrequired parts are in place.\nLet\u0027s look at defining the estimatable parameters in more detail:\nModel.estimateParameter \u0026quot;r\u0026quot; noConstraints 0.10 5.00\n\nFor the Model.estimateParameter function, first pass\nthe short code as you have used it in your above model expressions.\nNext, you must pass the constraint mode. In Bristlecone, although\nthe optimisation algorithms are unconstrained, it is possible\nto constrain parameters to specific values using transformations. These\nare applied automatically within the model-fitting process. Two available\noptions are noConstaints, which is unconstrained, and positiveOnly, which\nprevents the value of that parameter dropping below zero. The last\narguments are two numbers representing a lower and upper bound\nfrom which to draw an initial starting value for the parameter.\nThe starting value is drawn from a continuous uniform distribution,\nusing a Random that you define in the EstimationEngine (see estimating).\n","headings":["Defining a Hypothesis (or Model System)"],"type":"content"},{"uri":"https://acm.im/bristlecone/optimisation.html","title":"Optimisation","content":"\nOptimisation Methods\nBristlecone includes a suite of in-built local and global\noptimisation methods. You can also use a custom optimisation\nmethod defined in another library, or combine these with the\nin-built optimisation techniques.\nDefining a custom optimisation method\nA custom optimisation\nprocedure can be used with Bristlecone by plugging in as follows:\nopen Bristlecone\n\nlet myCustomOptimiser : EstimationEngine.Optimiser\u0026lt;float\u0026gt; =\n EstimationEngine.InDetachedSpace \u0026lt;|\n fun writeOut n domain f -\u0026gt; invalidOp \u0026quot;Doesn\u0026#39;t actually do anything!\u0026quot;\n\nlet engine =\n Bristlecone.mkContinuous\n |\u0026gt; Bristlecone.withCustomOptimisation myCustomOptimiser\n\nIncluded optimisation methods\nThe library itself includes Monte Carlo-based methods, and Amoeba (Nelder Mead Simplex) methods.\nAll methods are included in this namespace:\nopen Bristlecone.Optimisation\n\nSimulated Annealing (SA)\nSimulated annealing models a minimisation problem in terms of particle\nentropy, where the function value is analogous to energy. At high\ntemperatures, particles are in a high-energy state, thus can move\nreadily. As temperature gradually decreases, particles are less able\nto move to high energy states, with particles eventually arranging\ninto the \u2018ground state\u2019 of a solid material.\nThe SA implementation in Bristlecone includes classical SA that uses\na Boltzmann machine for jumps, and fast simulated annealing (FSA) that\nuses a Cauchy distribution for jumps:\nlet settings = MonteCarlo.SimulatedAnnealing.AnnealSettings\u0026lt;float\u0026gt;.Default\n\n// Classical Simulated Annealing:\nMonteCarlo.SimulatedAnnealing.classicalSimulatedAnnealing 0.01 false settings\n\n// Fast Simulated Annealing:\nMonteCarlo.SimulatedAnnealing.fastSimulatedAnnealing 0.01 false settings\n\nThe FSA approach enables greater exploration of more distant portions of\nparameter space more quickly and is therefore less prone to local minima\nproblems.\nFor the SA implementation in Bristlecone, you must specify whether you\nwish to use a temperature-dependent or temperature-independent proposal.\nWhen temperature-dependent, the jump size increases at higher temperatures,\nallowing coarser exploration of the parameter space initially, progressively\nbecoming more refined as the system cools.\nNelder-Mead Methods\nThe Nelder-Mead simplex (or amoeba method) expands and contracts an n-dimensional\ngeometry within an unconstrained parameter space, following a\n\u2018downhill\u2019 gradient. The implementation here draws a random point from a\nnormal distribution, informed by the starting bounds for each parameter.\nThe Nelder-Mead simplex is most appropriate for simpler likelihood surfaces.\nIt can be used as follows:\nlet settingsNM = Amoeba.Solver.Default\n\n{ Alpha = 1.0\n Sigma = 0.5\n Gamma = 2.0\n Rho = -0.5\n Size = 3 }\nlet single : EstimationEngine.Optimise\u0026lt;float\u0026gt; = \n Amoeba.Solver.solve settingsNM\n\nA single Nelder-Mead solver is highly subject to local minima. To reduce\nthe prevalence of local minima, Bristlecone includes a swarm implementation\nof the Nelder-Mead simplex, which, creates an ensemble of 20 amoeba, all of which\ncrawl the likelihood surface. After n iterations, all amoeba that have values\nabove the 80th percentile of the negative log likelihood values are\ndiscarded. The procedure continues for five levels. The swarm mode\ncan be used from:\nlet levels = 5\nlet individuals = 20\n\nAmoeba.swarm levels individuals settingsNM\n\nMonte Carlo methods\nMonte Carlo Markov Chain (MCMC) methods are most often applied in Bayesian\nanalyses, but can also be used for optimisation to identify the -log likelihood.\nWithin Bristlecone, a number of variations of Monte Carlo methods are included.\nOften, it is appropriate to use multiple methods in combination; initially, tuning\nalgorithm(s) are used to enhance the performance of the search. Once the tuning phase\nis complete, a search is conducted to identify the minimum; finally, a sampling algorithm\nmay be run to explore the distribution around the minimum.\nRandom Walk Metropolis Hastings\nThe random walk algorithm may optionally be passed a list of TuningSteps,\nwhich will be run before the final random walk.\n// Random walk with no tuning steps\nMonteCarlo.randomWalk []\n\n// Random walk with 50,000 iterations of tuning, during\n// which the individual parameter jump sizes are scaled\n// every 500 iterations.\n[ MonteCarlo.TuneMethod.Scale, 500, EndConditions.afterIteration 50000 ]\n|\u0026gt; MonteCarlo.randomWalk\n\nAdaptive Metropolis (AM)\nThe AM algorithm continuously tunes the covariance structure of the\njump distribution based on the size of jumps in the recently-explored\nparameter space.\nlet weighting = 0.250 // Weight to give to recent history versus existing covariance structure\nlet frequency = 200 // Tune the covariance structure every 200 iterations\n\nMonteCarlo.adaptiveMetropolis weighting frequency\n\nFilzbach-style Monte Carlo\nThe Filzbach algorithm was introduced by Drew Purves, Microsoft Research\nCambridge. The Filzbach algorithm was designed for problems in ecological\nresearch. It contains a burn-in phase and a sampling phase.\nFour settings are required: the length of the burn-in phase (which can be\nany Bristlecone EndCondition); the minimum and maximum scale changes that can\noccur within the tuning phase, based on the ranges given for each parameter in\nthe model definition; and the number of changes after which to conduct parameter\ntuning.\nopen Bristlecone.Optimisation.MonteCarlo.Filzbach\n\nlet settingsFB = { TuneAfterChanges = 20\n MaxScaleChange = 100.\n MinScaleChange = 0.01\n BurnLength = EndConditions.afterIteration 100000 }\n\nfilzbach settingsFB\n\n\u0027Automatic\u0027 optimisation\nImplementation similar to that proposed by Yang and Rosenthal: \u0022Automatically Tuned\nGeneral-Purpose MCMC via New Adaptive Diagnostics\u0022\nReference\nMonteCarlo.\u0060\u0060Automatic (Adaptive Diagnostics)\u0060\u0060\n\nAdaptive-Metropolis-within Gibbs\nAn adaptive Metropolis-within-Gibbs sampler that tunes the variance of\neach parameter according to the per-parameter acceptance rate.\nReference: Bai Y (2009). \u201CAn Adaptive Directional Metropolis-within-Gibbs Algorithm.\u201D\nTechnical Report in Department of Statistics at the University of Toronto.\nMonteCarlo.\u0060\u0060Adaptive-Metropolis-within Gibbs\u0060\u0060\n\nMetropolis-within Gibbs\nA non-adaptive Metropolis-within-gibbs Sampler. Each parameter\nis updated individually, unlike the random walk algorithm.\nMonteCarlo.\u0060\u0060Metropolis-within Gibbs\u0060\u0060\n\n","headings":["Optimisation Methods","Defining a custom optimisation method","Included optimisation methods","Simulated Annealing (SA)","Nelder-Mead Methods","Monte Carlo methods","Random Walk Metropolis Hastings","Adaptive Metropolis (AM)","Filzbach-style Monte Carlo","\u0027Automatic\u0027 optimisation","Adaptive-Metropolis-within Gibbs","Metropolis-within Gibbs"],"type":"content"},{"uri":"https://acm.im/bristlecone/estimation-engine.html","title":"Defining a Model-Fitting Method (Estimation Engine)","content":"\nDefining an Estimation Engine\nThe estimation engine is the definition of the method\nthrough which model-fitting will take place, as defined\nby Bristlecone\u0027s EstimationEngine type. If you are\ncompeting multiple hypotheses, a single EstimationEngine\nwill suffice for all model hypotheses.\nForthcoming\nTime Modes\nBristlecone can run models in either discrete time, or continuous time. When running models in continuous time, an integration function is required:\nCurrently only fixed timesteps are supported, but variable timestep support (e.g. for sediment core data) is planned.\nTwo integration functions are included:\n\n\n\nSolver\nFunction\nDescription\n\n\n\n\nRunge-Kutta 4 (MathNet Numerics)\nIntegration.MathNet.integrate\nA fourth-order Runge Kutta method to provide approximate solutions to ODE systems.\n\n\nRunge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research)\nIntegration.MsftOslo.integrate\nA method based on classic Runge-Kutta, but with automatic error and step size control. See the documentation.\n\n\n\n\nOptimisation\nBristlecone supports optimisation functions that have the following type signature:\ntype Optimise\u0026lt;\u0026#39;data\u0026gt; = int -\u0026gt; int -\u0026gt; Domain -\u0026gt; (\u0026#39;data[] -\u0026gt; \u0026#39;data) -\u0026gt; (\u0026#39;data * \u0026#39;data []) list\n\nThere are two optimsation techniques currently built-in:\n\n\n\nMethod\nFunction\nDescription\n\n\n\n\nAmoeba (Nelder-Mead)\nOptimisation.Amoeba.solve\nA gradient-descent method.\n\n\nMCMC Random Walk\nOptimisation.MonteCarlo.randomWalk\nA method based on classic Runge-Kutta, but with automatic error and step size control. See the documentation.\n\n\n\n\nEstimation Engines\nTo use Bristlecone functions requires a configured EstimationEngine. The easiest way is with the helper functions within the Bristlecone module:\n\n\n\nFunction\nType\nDescription\n\n\n\n\nmkContinuous\nEstimationEngine\nDefault continuous engine\n\n\nmkDiscrete\nEstimationEngine\nDefault discrete model engine\n\n\nwithContinuousTime\nt : Integrate -\u0026gt; engine: EstimationEngine -\u0026gt; EstimationEngine\nTransforms engine to continuous time mode, using the given integrator function.\n\n\nwithConditioning\nc: Conditioning -\u0026gt; engine: EstimationEngine -\u0026gt; EstimationEngine\nChoose how the start point is chosen when solving the model system.\n\n\n\n\n*\n","headings":["Defining an Estimation Engine","Time Modes","Optimisation","Estimation Engines"],"type":"content"},{"uri":"https://acm.im/bristlecone/data.html","title":"Loading and Saving Data","content":"\nLoading and Saving Data\nThe Bristlecone.Data namespace includes methods for saving Bristlecone\nresults and diagnostics, and loading saved results for further analysis\nat a later date.\nEstimation Results\nSaving and loading estimation results is conducted as follows:\nopen Bristlecone\nopen Bristlecone.Data\n\nlet resultsDirectory = \u0026quot;/some/data/dir\u0026quot;\nlet thinTraceBy = 1000 // Only trace every n iterations to save disk space\nlet subject = \u0026quot;Mosquito population\u0026quot; // The name of the \u0026#39;subject\u0026#39; of analysis\nlet modelName = \u0026quot;Logistic growth\u0026quot;\n\n/// Output three files: the maximum likelihood estimate,\n/// a trace of the optimisation process, and the estimated vs\n/// observed time series.\nfun result -\u0026gt;\n EstimationResult.saveAll resultsDirectory subject modelName thinTraceBy result\n\nOther statistics with save functions\nBristlecone.Data includes methods for saving results from the following\nstatistical functions that Bristlecone performs:\n// Save confidence intervals:\nBristlecone.Data.Confidence.save\n\n// Save convergence statistics based on multiple \u0026#39;chains\u0026#39;\n// of analysis on the same subject and model:\nBristlecone.Data.Convergence.save\n\n// Save Akaike weights calculated for model selection:\nBristlecone.Data.ModelSelection.save\n\n","headings":["Loading and Saving Data","Estimation Results","Other statistics with save functions"],"type":"content"},{"uri":"https://acm.im/bristlecone/diagnostics.html","title":"Diagnostics","content":"\nDiagnostics\nDiagnostic statistics are essential to ensure that the model-fitting\nand model-selection results are valid and complete.\nConvergence Statistics\nFor Monte-Carlo based optimisation techniques (such as the random walk\nMCMC or the Filzbach-style MCMC) convergence statistics are useful to\nassess whether multiple independent chains have identified the same\nminimum -log likelihood in parameter space, which may be the global minimum.\nBristlecone includes the Gelman-Rubin convergence statistic (Rhat), which\ncan be calculated on a per-parameter basis.\nopen Bristlecone\nopen Bristlecone.Diagnostics\nopen Bristlecone.Data\n\nlet saveDirectory = \u0026quot;/some/save/dir\u0026quot;\n\nfun listOfResults -\u0026gt;\n\n // Calculate Gelman-Rubin statistic for all parameters \n // across multiple model runs\n let stat = Convergence.gelmanRubinAll 1000 listOfResults\n\n // Save results to a single file\n Convergence.save saveDirectory stat\n\nLogging individual model components\nSometimes it is helpful for diagnostic or visualisation purposes to\nsee the values of individual parts of a mathematical model during\ncomputation, or at the minimum -log likelihood.\nBristlecone includes the ability to log out the values of individual\nmodel components through time. An worked example is given below of how to\nobtain computed values across the time-series for components within\na model system. First, you must set up a model that has a parameter\nof the IComponentLogger\u0026lt;float\u0026gt;) type:\n[ NB TODO: This function must be refactored to work with the new Bristlecone Language ]\n// open Bristlecone\n// open Bristlecone.Language\n// open Bristlecone.Diagnostics.ModelComponents\n\n// let hypothesis (cLog:IComponentLogger\u0026lt;ModelExpression\u0026gt;) =\n\n// let \u0060\u0060dN/dt\u0060\u0060 = \n// Parameter \u0026quot;r\u0026quot; * This * cLog.StoreValue \u0026quot;log this thing\u0026quot; (Constant 1. - (This / Parameter \u0026quot;K\u0026quot;))\n\n// Model.empty\n// |\u0026gt; Model.addEquation \u0026quot;N\u0026quot; \u0060\u0060dN/dt\u0060\u0060\n// |\u0026gt; Model.estimateParameter \u0026quot;r\u0026quot; noConstraints 0.10 5.00 \n// |\u0026gt; Model.estimateParameter \u0026quot;K\u0026quot; noConstraints 50.0 150.\n// |\u0026gt; Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \u0026quot;N\u0026quot; ])\n// |\u0026gt; Model.compile\n\n\n// fun engine singleResult -\u0026gt;\n// // A wrapper around the Bristlecone.fit function\n// let fitFn ts m e = Bristlecone.fit e (Optimisation.EndConditions.afterIteration 1) ts m\n// let logs = ModelComponents.calculateComponents fitFn engine singleResult\n// ()\n\n","headings":["Diagnostics","Convergence Statistics","Logging individual model components"],"type":"content"},{"uri":"https://acm.im/bristlecone/language.html","title":"Writing Models","content":"\nThe Bristlecone Language: Writing Models\nBristlecone includes a language for expressing mathematical models, and combining\nthese to form hypotheses for testing. You can use the language by opening it\u0027s\nnamespace:\nopen Bristlecone // Opens Bristlecone core library and estimation engine\nopen Bristlecone.Language // Open the language for writing Bristlecone models\n\nWriting mathematical expressions\nIn Bristlecone, mathematical expressions to be used within\na model may be written using simple terms. Consider the following\nexample of an ordinary differential equation of logistic growth:\nlet dNdt = Parameter \u0026quot;r\u0026quot; * This * (Constant 1. - (This / Parameter \u0026quot;K\u0026quot;))\n\nHere, we have used the following model expressions:\n\n\nThis - the subject of the equation, which in this\ncase is N, the population size.\n\n\nParameter - an estimatable parameter followed by its name. Here, we have\ndefined two parameters:\n\nParamater \u0022r\u0022 - the intrinsic growth rate of the population;\nParameter \u0022K\u0022 - the carrying capacity of the population.\n\n\nConstant - a fixed parameter or constant value within an equation.\n\nYou can use all standard mathematical operators * / \u002B - % ** to build your model.\nThere are additional model expressions that may be used to build up more complex\nexpressions (which are defined in the ModelExpression discriminated union).\nAdditional model expressions\nTime-varying parameters\nOften, a time-series model needs to take account of environmental\nvariability. For example, changes in temperature and precipitation\nmay influence the growth rate of a plant over time. Bristlecone supports\ntime-varying parameters in equations using the form:\nEnvironment \u0026quot;T[min]\u0026quot;\n\nHere, we have defined the minimum temperature (T[min]) as a time-varying (or environment) parameter.\nUnlike Paramater items, T[min] will not be estimated during model-fitting, but\nwill be read from the environmental properties for the appropriate time interval.\nConditional\nYou can define a conditional model fragment by using the\nConditional term. A Conditional model expression takes a function\nwith one argument - a function that represents the future\ncomputation of the model expression (compute -\nwith signature ModelExpression -\u0026gt; float). Within this function,\nyou can then evaluate the answer of any model expressions\nby passing them as the argument to the compute function.\nPlease see the below example:\nlet linear =\n Conditional(fun compute -\u0026gt;\n if compute (Parameter \u0026quot;a\u0026quot; * Constant 5.) \u0026lt; 1e-12 \n then Invalid \n else Parameter \u0026quot;a\u0026quot; * This)\n\nIn this example, the function is limited such that\nthe combination of parameter value a with a theoretical\nvalue of This at 5.0 cannot result in an answer that is\nless than 1e-12. If this is the case, the result of the\nmodel is Invalid.\nInvalid\nThe Invalid keyword is useful in combination with the\nConditional keyword, as demonstrated above. When any model expression\nreturns Invalid, the model fails. During optimisation, this is useful\nto constrain the search within parameter space to values that do not\ntend to infinity, or where values may be theoretically implausable.\nArbitrary\nSometimes, a complex sub-model may need to be inserted where you\ndo not wish to rewrite it into the Bristlecone language. You may also\nnot have access to the original source, or be calling from an external\nlibrary. In these cases, you can use the Arbitrary model expression\nto wrap the function for Bristlecone. Helper functions are included\nto simplify this process within the Arbitrary module:\n/// x: population size\n/// t: current time\n/// z: some environmental value\nlet someArbitraryFn x t z =\n x \u002B t * 1.0 - z\n\n// TODO Insert example here\n\nTime\nThe Time keyword simply retrives the current time index; as such, it\ncan be used to formulate time-dependent models.\n","headings":["The Bristlecone Language: Writing Models","Writing mathematical expressions","Additional model expressions","Time-varying parameters","Conditional","Invalid","Arbitrary","Time"],"type":"content"},{"uri":"https://acm.im/bristlecone/integration.html","title":"Integration","content":"\nIntegration Methods\nBristlecone supports model systems defined in discrete or continuous time.\nFor continuous-time model systems - defined as ordinary differential\nequation(s) - Bristlecone applies numerical integration to calculate\nchanges in the modelled properties through time.\nNote. Currently only fixed timesteps are supported, but variable timestep support\n(e.g. for sediment core data) is planned for a future release.\nIncluded integration methods\nThe following integration functions are included within the Bristlecone.Integration namespace:\n\n\n\nSolver\nFunction\nDescription\n\n\n\n\nRunge-Kutta 4 (MathNet Numerics)\nIntegration.MathNet.integrate\nA fourth-order Runge Kutta method to provide approximate solutions to ODE systems.\n\n\nRunge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research)\nIntegration.MsftOslo.integrate\nA method based on classic Runge-Kutta, but with automatic error and step size control. See the documentation.\n\n\n\n\nAdding a custom integration method\nYou can add a custom integration routine by wrapping your integration\nfunction to match the EstimationEngine.Integration type signature as follows:\nopen Bristlecone\n\nlet myCustomIntegrator : EstimationEngine.Integrate\u0026lt;\u0026#39;data,\u0026#39;time\u0026gt; =\n fun writeOut tInitial tEnd tStep initialConditions externalEnvironment model -\u0026gt;\n invalidOp \u0026quot;Doesn\u0026#39;t actually do anything!\u0026quot;\n\nlet engine =\n Bristlecone.mkContinuous\n |\u0026gt; Bristlecone.withContinuousTime myCustomIntegrator\n\nWhen defining a custom integration routine, you may wish to use the\nBase.solve function from the Bristlecone.Integration namespace.\nThis is used to arrange the equations into a form suitable for a\nsimple integration routine.\n","headings":["Integration Methods","Included integration methods","Adding a custom integration method"],"type":"content"},{"uri":"https://acm.im/bristlecone/model-fitting.html","title":"Model Fitting","content":"\nModel Fitting\n","headings":["Model Fitting"],"type":"content"},{"uri":"https://acm.im/bristlecone/workflow.html","title":"Ensembles and Parallel Processing","content":"\nTechniques: Ensembles and Parallel Processing\nModel-fitting and model-selection usually requires running\nmultiple model runs, for multiple hypotheses, and sometimes\nfor multiple datasets, resulting in hundreds of individual\nmodel runs.\nBristlecone includes capabilities to orchestrate the parallel\nrunning of such complex analyses within the\nBristlecone.Workflow namespace. Using Bristlecone\u0027s\nOrchestrationAgent, you can queue jobs to run when processor\ncores are available.\nWork Packages\nTo run your analyses in parallel, you must wrap up each analysis\nas a work package. A work package is simply an async computation\nthat returns an estimation result, with the function signature\nAsync\u0026lt;ModelSystem.EstimationResult\u0026gt;. A simple example function to\nsetup work packages for a number of datasets, hypotheses, and individuals\nis given below:\nopen Bristlecone\n\nlet replicates = 3 // number of replications per analysis\nlet endCondition = Optimisation.EndConditions.afterIteration 100000\n\nlet workPackages datasets hypotheses engine =\n seq {\n for d in datasets do\n for h in [ 1 .. hypotheses |\u0026gt; List.length ] do\n for _ in [ 1 .. replicates ] do\n yield async {\n return Bristlecone.fit \n engine \n endCondition \n d\n hypotheses.[h-1]\n }\n }\n\nYou can perform any additional steps within each work package. A common\napproach is to save each model result to disk (i.e., using functions from\nthe Bristlecone.Data namespace) within the async\nblock in the above code, so that results are available as soon as\nthey are complete.\nWhen the EstimationEngine, datasets, and hypotheses are\napplied to this function, the resultant seq\u0026lt;Async\u0026lt;EstimationResult\u0026gt;\u0026gt;\ncan be passed to an orchestration agent.\nOrchestration Agent\nAn orchestration agent manages the running of work packages depending on\nyour local computer\u0027s resources. You can access these features through the following\nnamespace:\nopen Bristlecone.Workflow\n\nThere are three arguments required to create an OrchestrationAgent:\n\n\nA logger (LogEvent -\u0026gt; unit), which consumes log messages from all threads. You\nmust ensure that the logger is safe to use from multiple processes. Bristlecone\nincludes some loggers that are thread-safe. In addition, the Bristlecone.Charts.R\nNuGet package contains interoperability with R to produce real-time traces of the movement\nof each analysis through parameter space; this is very useful for example\nwith MCMC optimisation techniques to compare chains.\n\n\nThe number of processes to run in parallel. The recommended approach is to set\nthis to System.Environment.ProcessorCount, which represents the number of cores\navailable on your system.\n\n\nWhether to cache results in the resultant object. This increases memory usage, but allows\npost-hoc analysis of the results. A common approach is to set this to false but save each\nresult to disk within the work package itself (see above). The results\ncan then be re-loaded at a later date for diagnostics and further analysis.\n\n\nFirst, let\u0027s use one of Bristlecone\u0027s built-in loggers to print the progress of each\nwork package:\nlet logger = Logging.Console.logger 1000\n\nThis logger will print the current point in parameter space each thousand\niteration, for each chain (along with process IDs). Next, let\u0027s create and setup\nthe orchestration agent:\nlet orchestrator = Orchestration.OrchestrationAgent(logger, System.Environment.ProcessorCount, false)\n\n// fun datasets hypotheses engine -\u0026gt;\n\n// // Orchestrate the analyses\n// let work = workPackages datasets hypotheses engine\n// let run() = \n// work \n// |\u0026gt; Seq.iter (\n// Orchestration.OrchestrationMessage.StartWorkPackage \n// \u0026gt;\u0026gt; orchestrator.Post)\n\n// run()\n\nIf the above code is supplied with datasets, hypotheses, and an\nEstimationEngine, it will schedule, queue and run the jobs until complete.\n","headings":["Techniques: Ensembles and Parallel Processing","Work Packages","Orchestration Agent"],"type":"content"},{"uri":"https://acm.im/bristlecone/logging.html","title":"Logging","content":"\nLogging in Bristlecone\nForthcoming\n","headings":["Logging in Bristlecone"],"type":"content"},{"uri":"https://acm.im/bristlecone/examples/shrub-resource.html","title":"Shrub response to a single limiting resource","content":"\n","headings":[],"type":"content"},{"uri":"https://acm.im/bristlecone/examples/dendroecology.html","title":"Dendroecology: investigating plant-environment interactions","content":"\nGrowth of tree rings in response to temperature\nThis Bristlecone example demonstrates model-fitting\nusing high-resolution monthly temperature data with\nannual ring width increments.\nFirst, we must reference Bristlecone and open it:\nopen Bristlecone // Opens Bristlecone core library and estimation engine\nopen Bristlecone.Language // Open the language for writing Bristlecone models\nopen Bristlecone.Time\n\nStep 1. Defining the ecological model\nHere, we\n// 1. Model System\n// ----------------------------\n\nlet hypothesis =\n\n /// The universal gas constant in J mol\u22121 K\u22121\n let gasConstant = Constant 8.314\n\n /// An Arrhenius function to represent temperature limitation on growth.\n /// Form of equation: https://pubag.nal.usda.gov/download/13565/PDF\n let temperatureLimitation =\n Constant System.Math.E\n ** ((Constant 1000. * Parameter \u0026quot;Ea\u0026quot; * (Environment \u0026quot;temperature\u0026quot; - Constant 298.))\n / (Constant 298. * gasConstant * Environment \u0026quot;temperature\u0026quot;))\n\n /// Plant growth is a function of net photosynthesis minus environmental losses.\n /// Photosynthesis is limited by light and temperature.\n let \u0060\u0060db/dt\u0060\u0060 = This * Parameter \u0026quot;r\u0026quot; * temperatureLimitation - Parameter \u0026quot;\u03B3B\u0026quot; * This\n\n Model.empty\n |\u0026gt; Model.addEquation \u0026quot;stem radius\u0026quot; \u0060\u0060db/dt\u0060\u0060\n |\u0026gt; Model.estimateParameter \u0026quot;Ea\u0026quot; noConstraints 40.0 50.0\n |\u0026gt; Model.estimateParameter \u0026quot;\u03B3B\u0026quot; noConstraints 0.01 0.40\n |\u0026gt; Model.estimateParameter \u0026quot;r\u0026quot; notNegative 0.01 1.00\n |\u0026gt; Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \u0026quot;stem radius\u0026quot; ])\n |\u0026gt; Model.compile\n\n\n// 2. Setup Bristlecone Engine\n// ----------------------------\n// A bristlecone engine provides a fixed setup for estimating parameters from data.\n// Use the same engine for all model fits within a single study.\n\nlet engine =\n Bristlecone.mkContinuous\n |\u0026gt; Bristlecone.withContinuousTime Integration.MathNet.integrate\n |\u0026gt; Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint\n |\u0026gt; Bristlecone.withTunedMCMC\n [ Optimisation.MonteCarlo.TuneMethod.CovarianceWithScale 0.200,\n 250,\n Optimisation.EndConditions.afterIteration 20000 ]\n\n\n// 3. Test Engine and Model\n// ----------------------------\n// Running a full test is strongly recommended. The test will demonstrate if the current\n// configuration can find known parameters for a model. If this step fails, there is an\n// issue with either your model, or the Bristlecone configuration.\n\n// 0. Configure Options\n// ----------------------------\n\nmodule Settings =\n\n /// Bristlecone can use latitude and longitude to compute day length.\n let latitude, longitude = 63.2, 15.2\n let endWhen = Optimisation.EndConditions.afterIteration 1\n\n\n// let startValues =\n// [ ShortCode.create \u0026quot;lynx\u0026quot;, 30.09; ShortCode.create \u0026quot;hare\u0026quot;, 19.58 ] |\u0026gt; Map.ofList\n\n// // TODO Test settings new format\n\n// hypothesis\n// |\u0026gt; Bristlecone.testModel engine Options.testSeriesLength startValues Options.iterations []\n\n\n// // 4. Load Real Data\n// // ----------------------------\n// // Here, we are using the FSharp.Data type provider to read in .csv datasets.\n// // We prepare the monthly temperature dataset for the analysis by:\n// // a) Loading the daily dataset using the FSharp.Data library;\n// // b) Replacing NaN values with the F# \u0026#39;None\u0026#39; option type;\n// // c) Converting the dataset into a Bristlecone time series type;\n// // d) Interpolate the \u0026#39;None\u0026#39; values by linear interpolation to fill in missing measurements;\n// // e) Generalise the time series from daily to monthly by applying an average function.\n\n// open FSharp.Data\n\n// // TODO Is there a way to streamline this?\n// [\u0026lt;Literal\u0026gt;]\n// let DailyTemperatureUrl = __SOURCE_DIRECTORY__ \u002B \u0026quot;/data/mean-temperature-daily.csv\u0026quot;\n\n// let meanTemperatureMonthly =\n// let maxTemperatures = CsvProvider\u0026lt;DailyTemperatureUrl\u0026gt;.Load DailyTemperatureUrl\n\n// maxTemperatures.Rows\n// |\u0026gt; Seq.map (fun r -\u0026gt;\n// ((if System.Double.IsNaN r.\u0060\u0060T[avg]\u0060\u0060 then\n// None\n// else\n// Some(r.\u0060\u0060T[avg]\u0060\u0060 \u002B 273.15)),\n// r.Date))\n// |\u0026gt; TimeSeries.fromObservations\n// |\u0026gt; TimeSeries.interpolate\n// |\u0026gt; TimeSeries.generalise (FixedTemporalResolution.Months(PositiveInt.create 1)) (fun x -\u0026gt; x |\u0026gt; Seq.averageBy fst)\n\n\n// module Test =\n\n// open Bristlecone.Test\n\n// let settings = TestSettings.Default\n\n// let testSettings =\n// { Resolution = Years 1\n// TimeSeriesLength = 30\n// StartValues = [ code \u0026quot;b\u0026quot;, 5.; code \u0026quot;t\u0026quot;, 255. ] |\u0026gt; Map.ofList\n// EndCondition = Settings.endWhen\n// GenerationRules =\n// [ \u0026quot;b\u0026quot; |\u0026gt; GenerationRules.alwaysLessThan 1000000.\n// \u0026quot;b\u0026quot; |\u0026gt; GenerationRules.alwaysMoreThan 0.\n// code \u0026quot;b\u0026quot;, (fun data -\u0026gt; (data |\u0026gt; Seq.max) - (data |\u0026gt; Seq.min) \u0026gt; 100.) ]\n// NoiseGeneration = fun p data -\u0026gt; data\n// EnvironmentalData = [ code \u0026quot;t\u0026quot;, TemperatureData.monthly ] |\u0026gt; Map.ofList\n// Random = MathNet.Numerics.Random.MersenneTwister()\n// StartDate = System.DateTime(1970, 01, 01)\n// Attempts = 50000 }\n\n// let run () =\n// hypothesis |\u0026gt; Bristlecone.testModel Settings.engine testSettings\n\n\n// let testResult = Test.run ()\n\n// // 4. Fit Model to Real Data\n// // -----------------------------------\n// let result =\n// hypothesis\n// |\u0026gt; Bristlecone.fit engine (Optimisation.EndConditions.afterIteration Options.iterations) data\n\n","headings":["Growth of tree rings in response to temperature","Step 1. Defining the ecological model"],"type":"content"},{"uri":"https://acm.im/bristlecone/examples/tutorial.html","title":"Quick Tour","content":"\n","headings":[],"type":"content"},{"uri":"https://acm.im/bristlecone/examples/predator-prey.html","title":"Predator-Prey Dynamics","content":"\n\u0026emsp;\n\nPredator-Prey Dynamics: Snowshoe Hare and Lynx\nHere we use the classic example of snowshoe hare and lynx predator-prey dynamics,\nto demonstrate the basic functions of Bristlecone. The dataset is a 90-year\ntime-series of snowshoe hare and lynx pelts purchased by the\nHudson\u0027s Bay Company of Canada. Data is in 1000s.\nTo get started, we first load and open the Bristlecone library in\nan F# script file (.fsx):\nopen Bristlecone // Opens Bristlecone core library and estimation engine\nopen Bristlecone.Language // Open the language for writing Bristlecone models\n\nDefining the ecological model\nIn Bristlecone, a single ecological model (representing a single hypothesis)\nis defined through the ModelSystem type. A ModelSystem needs to include three key\ncomponents:\n\nModel equations. When working in continuous time, these are a system of Ordinary Differential Equations (ODEs).\nParameters to be estimated. You must specify the starting bounds and constraints for every parameter included in the model equations.\nLikelihood function. The (negative log) likelihood function -logL represents the probability of observing the data given the parameter set. We use a negative log likelihood function, which is then minimised during optimisation.\n\nIn this example, we demonstrate using the Lotka\u2013Volterra predator\u2013prey model as the\nmodel system. For the -logL function we use a bivariate normal negative log likelihood function.\nThis -logL function assumes normally-distributed observation error around each observation\nat each time-point, for both the lynx and hare data. The -logL function contains\nthree parameters that are to be estimated alongside the deterministic model: the variability\nin lynx data, the variability in hare data, and their covariance.\nlet \u0060\u0060predator-prey\u0060\u0060 =\n\n let \u0060\u0060dh/dt\u0060\u0060 = Parameter \u0026quot;\u03B1\u0026quot; * This - Parameter \u0026quot;\u03B2\u0026quot; * This * Environment \u0026quot;lynx\u0026quot;\n let \u0060\u0060dl/dt\u0060\u0060 = - Parameter \u0026quot;\u03B3\u0026quot; * This \u002B Parameter \u0026quot;\u0394\u0026quot; * Environment \u0026quot;hare\u0026quot; * This\n\n Model.empty\n |\u0026gt; Model.addEquation \u0026quot;hare\u0026quot; \u0060\u0060dh/dt\u0060\u0060\n |\u0026gt; Model.addEquation \u0026quot;lynx\u0026quot; \u0060\u0060dl/dt\u0060\u0060\n\n |\u0026gt; Model.estimateParameter \u0026quot;\u03B1\u0026quot; noConstraints 0.01 1.00 // Natural growth rate of hares in absence of predation\n |\u0026gt; Model.estimateParameter \u0026quot;\u03B2\u0026quot; noConstraints 0.01 1.00 // Death rate per encounter of hares due to predation\n |\u0026gt; Model.estimateParameter \u0026quot;\u0394\u0026quot; noConstraints 0.01 0.20 // Efficiency of turning predated hares into lynx\n |\u0026gt; Model.estimateParameter \u0026quot;\u03B3\u0026quot; noConstraints 0.01 0.20 // Natural death rate of lynx in the absence of food\n\n |\u0026gt; Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [\u0026quot;hare\u0026quot;; \u0026quot;lynx\u0026quot;])\n |\u0026gt; Model.estimateParameter \u0026quot;\u03C1\u0026quot; noConstraints -0.500 0.500\n |\u0026gt; Model.estimateParameter \u0026quot;\u03C3[x]\u0026quot; notNegative 0.001 0.100\n |\u0026gt; Model.estimateParameter \u0026quot;\u03C3[y]\u0026quot; notNegative 0.001 0.100\n\n |\u0026gt; Model.compile\n\n // TODO Error when setting constraints. Optim allows them to go negative!\n\nSetting up the Bristlecone Engine\nA bristlecone engine provides a fixed setup for estimating parameters from data.\nUse the same engine for all model fits within a single study.\nThis engine uses a gradident descent method (Nelder Mead simplex), and a basic\nRunge-Kutta 4 integration method provided by MathNet Numerics.\nlet engine = \n Bristlecone.mkContinuous\n |\u0026gt; Bristlecone.withTunedMCMC []\n |\u0026gt; Bristlecone.withContinuousTime Integration.MathNet.integrate\n |\u0026gt; Bristlecone.withConditioning Conditioning.RepeatFirstDataPoint\n |\u0026gt; Bristlecone.withSeed 1000 // We are setting a seed for this example - see below\n\nNote. We have set a seed for random number generation for this worked example. This ensures that the results are the same each time this documentation is generated.\nDoes it all work? Testing the engine and model\nBefore being confident in the ability of our estimation engine to\nbe able to arrive at the correct solution, we must run a full test\nof the model and estimation engine.\nBristlecone includes the Bristlecone.testModel function, which\nwe use here. Given a model system and estimation engine, the function\ngenerates a random parameter set (\u03B8) many times; for each \u03B8, the\n\u0027true\u0027 time-series are generated. The test result indicates the effectiveness\nof the configuration at estimating \u03B8 given the auto-generated\ntime-series. If there is divergence, there is likely an\nissue with your model or the Bristlecone configuration.\nBristlecone includes many settings to configure the test\nprocedure. A simple test configuration is set as Test.defaultSettings,\nbut here we will configure some additional settings:\nlet testSettings =\n Test.create\n |\u0026gt; Test.addStartValues [\n \u0026quot;hare\u0026quot;, 50.\n \u0026quot;lynx\u0026quot;, 75. ]\n |\u0026gt; Test.addNoise (Test.Noise.tryAddNormal \u0026quot;\u03C3[y]\u0026quot; \u0026quot;lynx\u0026quot;)\n |\u0026gt; Test.addNoise (Test.Noise.tryAddNormal \u0026quot;\u03C3[x]\u0026quot; \u0026quot;hare\u0026quot;)\n |\u0026gt; Test.addGenerationRules [\n Test.GenerationRules.alwaysLessThan 10000. \u0026quot;lynx\u0026quot;\n Test.GenerationRules.alwaysLessThan 10000. \u0026quot;hare\u0026quot; ]\n |\u0026gt; Test.withTimeSeriesLength 30\n |\u0026gt; Test.endWhen (Optimisation.EndConditions.afterIteration 1)\n\nIn our TestSettings, we have specified the initial time point (t = 0)\nfor both modelled time-series. We have also added noise around\neach generated time-series, and specified that each time-series\nshould be 30 years in length.\nWith these test settings, we can now run the test.\nlet testResult =\n \u0060\u0060predator-prey\u0060\u0060 \n |\u0026gt; Bristlecone.testModel engine testSettings\n\n##1## GeneralEvent \u0022Attempting to generate parameter set.\u0022\n##1## GeneralEvent \u0022The data must comply with 2 rules after 50000 tries.\u0022\n##1## GeneralEvent\n \u0022Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1).\u0022\n##1## DebugEvent\n \u0022Observations occur on a fixed temporal resolution: Years PositiveInt 1.\u0022\n##1## DebugEvent\n \u0022No environmental forcing data was supplied. Solving using time points of observations.\u0022\n##1## GeneralEvent\n \u0022Skipping optimisation: only the result of the given parameters will be computed\u0022\n##1## DebugEvent\n \u0022Observations occur on a fixed temporal resolution: Years PositiveInt 1.\u0022\n##1## DebugEvent\n \u0022No environmental forcing data was supplied. Solving using time points of observations.\u0022\n##1## DebugEvent\n \u0022Observations occur on a fixed temporal resolution: Years PositiveInt 1.\u0022\n##1## DebugEvent\n \u0022No environmental forcing data was supplied. Solving using time points of observations.\u0022\n##1## GeneralEvent\n \u0022Time-series start at 1970/01/01 with resolution Fixed (Years PositiveInt 1).\u0022\n##1## DebugEvent\n \u0022Observations occur on a fixed temporal resolution: Years PositiveInt 1.\u0022\n##1## DebugEvent\n \u0022No environmental forcing data was supplied. Solving using time points of observations.\u0022\n##1## GeneralEvent\n \u0022[Optimisation] Initial theta is [|0.04560414322; 0.4458347169; 0.007666657133; 0.1825123468; -0.091774904;\n 0.02763088772; 0.06570124545|]\u0022\n##1## GeneralEvent \u0022[Optimisation] Starting MCMC Random Walk\u0022\n##1## DebugEvent\n \u0022Observations occur on a fixed temporal resolution: Years PositiveInt 1.\u0022\n##1## DebugEvent\n \u0022No environmental forcing data was supplied. Solving using time points of observations.\u0022\n##1## DebugEvent\n \u0022Observations occur on a fixed temporal resolution: Years PositiveInt 1.\u0022\n##1## DebugEvent\n \u0022No environmental forcing data was supplied. Solving using time points of observations.\u0022\nWe can plot the test results to check the fit.\nvar renderPlotly_b5e1d1a6a8674e8dafb9e5fd0a5056ce = function() {\n var data = [{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Modelled\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221970-01-01T00:00:00\u0022,\u00221971-01-01T00:00:00\u0022,\u00221972-01-01T00:00:00\u0022,\u00221973-01-01T00:00:00\u0022,\u00221974-01-01T00:00:00\u0022,\u00221975-01-01T00:00:00\u0022,\u00221976-01-01T00:00:00\u0022,\u00221977-01-01T00:00:00\u0022,\u00221978-01-01T00:00:00\u0022,\u00221979-01-01T00:00:00\u0022,\u00221980-01-01T00:00:00\u0022,\u00221981-01-01T00:00:00\u0022,\u00221982-01-01T00:00:00\u0022,\u00221983-01-01T00:00:00\u0022,\u00221984-01-01T00:00:00\u0022,\u00221985-01-01T00:00:00\u0022,\u00221986-01-01T00:00:00\u0022,\u00221987-01-01T00:00:00\u0022,\u00221988-01-01T00:00:00\u0022,\u00221989-01-01T00:00:00\u0022,\u00221990-01-01T00:00:00\u0022,\u00221991-01-01T00:00:00\u0022,\u00221992-01-01T00:00:00\u0022,\u00221993-01-01T00:00:00\u0022,\u00221994-01-01T00:00:00\u0022,\u00221995-01-01T00:00:00\u0022,\u00221996-01-01T00:00:00\u0022,\u00221997-01-01T00:00:00\u0022,\u00221998-01-01T00:00:00\u0022,\u00221999-01-01T00:00:00\u0022,\u00222000-01-01T00:00:00\u0022],\u0022y\u0022:[20.309537446938847,9.3839940236745,4.236876450601756,1.3076699871814812,0.35874476486639695,0.11339454498450649,0.04491412817821594,0.022139651852645686,0.013195196028327597,0.009228799463419184,0.007378253562507375,0.006594805416721858,0.0064688607369621206,0.0068565277315699525,0.007752151926840302,0.009249229015357525,0.011541316517152329,0.014949321808485204,0.019975339344114953,0.027391377552908297,0.03837921207242595,0.0547479812098369,0.07927143422877043,0.11621004311166894,0.17211896174140834,0.2570977142962182,0.3867213723344409,0.5850200990270354,0.8890639002203814,1.3559860077204196,2.0736597235841723],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x\u0022,\u0022yaxis\u0022:\u0022y\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Observed\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221970-01-01T00:00:00\u0022,\u00221971-01-01T00:00:00\u0022,\u00221972-01-01T00:00:00\u0022,\u00221973-01-01T00:00:00\u0022,\u00221974-01-01T00:00:00\u0022,\u00221975-01-01T00:00:00\u0022,\u00221976-01-01T00:00:00\u0022,\u00221977-01-01T00:00:00\u0022,\u00221978-01-01T00:00:00\u0022,\u00221979-01-01T00:00:00\u0022,\u00221980-01-01T00:00:00\u0022,\u00221981-01-01T00:00:00\u0022,\u00221982-01-01T00:00:00\u0022,\u00221983-01-01T00:00:00\u0022,\u00221984-01-01T00:00:00\u0022,\u00221985-01-01T00:00:00\u0022,\u00221986-01-01T00:00:00\u0022,\u00221987-01-01T00:00:00\u0022,\u00221988-01-01T00:00:00\u0022,\u00221989-01-01T00:00:00\u0022,\u00221990-01-01T00:00:00\u0022,\u00221991-01-01T00:00:00\u0022,\u00221992-01-01T00:00:00\u0022,\u00221993-01-01T00:00:00\u0022,\u00221994-01-01T00:00:00\u0022,\u00221995-01-01T00:00:00\u0022,\u00221996-01-01T00:00:00\u0022,\u00221997-01-01T00:00:00\u0022,\u00221998-01-01T00:00:00\u0022,\u00221999-01-01T00:00:00\u0022,\u00222000-01-01T00:00:00\u0022],\u0022y\u0022:[50.001327341795516,4.66165516477726,45.70347431132781,6.642332798896241,39.06646770990088,2.989657343648782,11.79666082153579,14.201667194877448,7.814372617579694,5.570331790400621,2.9458301631723804,1.2031010617559252,0.3723317278871133,0.1147538554268356,0.04161888496590971,0.015554298682363002,0.007592577838468663,-0.01957347977936412,-0.002338655312036144,-0.015566577551008166,-0.005192630222346032,-0.012147049288397566,-0.008067017379788823,0.014432951936316335,0.0039023846774378715,0.0032430883882181823,0.00842351370003474,0.009698932289817244,0.003461320809886477,0.0022972763219877568,0.0007747674683684125],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x\u0022,\u0022yaxis\u0022:\u0022y\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Modelled\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221970-01-01T00:00:00\u0022,\u00221971-01-01T00:00:00\u0022,\u00221972-01-01T00:00:00\u0022,\u00221973-01-01T00:00:00\u0022,\u00221974-01-01T00:00:00\u0022,\u00221975-01-01T00:00:00\u0022,\u00221976-01-01T00:00:00\u0022,\u00221977-01-01T00:00:00\u0022,\u00221978-01-01T00:00:00\u0022,\u00221979-01-01T00:00:00\u0022,\u00221980-01-01T00:00:00\u0022,\u00221981-01-01T00:00:00\u0022,\u00221982-01-01T00:00:00\u0022,\u00221983-01-01T00:00:00\u0022,\u00221984-01-01T00:00:00\u0022,\u00221985-01-01T00:00:00\u0022,\u00221986-01-01T00:00:00\u0022,\u00221987-01-01T00:00:00\u0022,\u00221988-01-01T00:00:00\u0022,\u00221989-01-01T00:00:00\u0022,\u00221990-01-01T00:00:00\u0022,\u00221991-01-01T00:00:00\u0022,\u00221992-01-01T00:00:00\u0022,\u00221993-01-01T00:00:00\u0022,\u00221994-01-01T00:00:00\u0022,\u00221995-01-01T00:00:00\u0022,\u00221996-01-01T00:00:00\u0022,\u00221997-01-01T00:00:00\u0022,\u00221998-01-01T00:00:00\u0022,\u00221999-01-01T00:00:00\u0022,\u00222000-01-01T00:00:00\u0022],\u0022y\u0022:[311.0574698136266,329.4791608280526,306.2274449897395,273.7366201204412,234.40617575069248,197.05768467313504,164.7170221978494,137.4352793110064,114.59658966510042,95.52682906028927,79.62036827342081,66.35871544182028,55.30484228644642,46.09258268724516,38.41594848368238,32.01957309884585,26.690494542490327,22.251202434542257,18.553798594208,15.475112702216993,12.912627769871662,10.781089223890444,9.009691125141217,7.539751958862425,6.322810886749545,5.319095033920336,4.496333089083634,3.8289284763498532,3.297575584353392,2.889551876143357,2.6002727809885555],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x2\u0022,\u0022yaxis\u0022:\u0022y2\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Observed\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221970-01-01T00:00:00\u0022,\u00221971-01-01T00:00:00\u0022,\u00221972-01-01T00:00:00\u0022,\u00221973-01-01T00:00:00\u0022,\u00221974-01-01T00:00:00\u0022,\u00221975-01-01T00:00:00\u0022,\u00221976-01-01T00:00:00\u0022,\u00221977-01-01T00:00:00\u0022,\u00221978-01-01T00:00:00\u0022,\u00221979-01-01T00:00:00\u0022,\u00221980-01-01T00:00:00\u0022,\u00221981-01-01T00:00:00\u0022,\u00221982-01-01T00:00:00\u0022,\u00221983-01-01T00:00:00\u0022,\u00221984-01-01T00:00:00\u0022,\u00221985-01-01T00:00:00\u0022,\u00221986-01-01T00:00:00\u0022,\u00221987-01-01T00:00:00\u0022,\u00221988-01-01T00:00:00\u0022,\u00221989-01-01T00:00:00\u0022,\u00221990-01-01T00:00:00\u0022,\u00221991-01-01T00:00:00\u0022,\u00221992-01-01T00:00:00\u0022,\u00221993-01-01T00:00:00\u0022,\u00221994-01-01T00:00:00\u0022,\u00221995-01-01T00:00:00\u0022,\u00221996-01-01T00:00:00\u0022,\u00221997-01-01T00:00:00\u0022,\u00221998-01-01T00:00:00\u0022,\u00221999-01-01T00:00:00\u0022,\u00222000-01-01T00:00:00\u0022],\u0022y\u0022:[75.00232078771431,413.7465533711394,73.45028087000271,367.70310992233055,95.25922450276627,359.52618904842876,255.91161632542133,212.36760369971242,237.83377495792888,229.1384035162616,224.16193975751182,213.44197894367474,197.3045479029332,178.94374437169552,161.0341924603577,144.5502883681717,129.6519364668021,116.25460209469908,104.26089709127216,93.46898953979634,83.80782528908432,75.1451891369872,67.37741721246931,60.42974481818585,54.166800333776784,48.573395252800786,43.56339457235884,39.04431199665667,35.01117552344669,31.372446196633547,28.147819685011818],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x2\u0022,\u0022yaxis\u0022:\u0022y2\u0022}];\n var layout = {\u0022width\u0022:600,\u0022height\u0022:600,\u0022template\u0022:{\u0022layout\u0022:{\u0022title\u0022:{\u0022x\u0022:0.05},\u0022font\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022paper_bgcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022plot_bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022autotypenumbers\u0022:\u0022strict\u0022,\u0022colorscale\u0022:{\u0022diverging\u0022:[[0.0,\u0022#8e0152\u0022],[0.1,\u0022#c51b7d\u0022],[0.2,\u0022#de77ae\u0022],[0.3,\u0022#f1b6da\u0022],[0.4,\u0022#fde0ef\u0022],[0.5,\u0022#f7f7f7\u0022],[0.6,\u0022#e6f5d0\u0022],[0.7,\u0022#b8e186\u0022],[0.8,\u0022#7fbc41\u0022],[0.9,\u0022#4d9221\u0022],[1.0,\u0022#276419\u0022]],\u0022sequential\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]],\u0022sequentialminus\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]},\u0022hovermode\u0022:\u0022closest\u0022,\u0022hoverlabel\u0022:{\u0022align\u0022:\u0022left\u0022},\u0022coloraxis\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}},\u0022geo\u0022:{\u0022showland\u0022:true,\u0022landcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showlakes\u0022:true,\u0022lakecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022subunitcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022bgcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022mapbox\u0022:{\u0022style\u0022:\u0022light\u0022},\u0022polar\u0022:{\u0022bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022radialaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022ticks\u0022:\u0022\u0022},\u0022angularaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022ticks\u0022:\u0022\u0022}},\u0022scene\u0022:{\u0022xaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true},\u0022yaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true},\u0022zaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true}},\u0022ternary\u0022:{\u0022aaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022baxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022caxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022},\u0022xaxis\u0022:{\u0022title\u0022:{\u0022standoff\u0022:15},\u0022ticks\u0022:\u0022\u0022,\u0022automargin\u0022:\u0022height\u002Bwidth\u002Bleft\u002Bright\u002Btop\u002Bbottom\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinewidth\u0022:2.0},\u0022yaxis\u0022:{\u0022title\u0022:{\u0022standoff\u0022:15},\u0022ticks\u0022:\u0022\u0022,\u0022automargin\u0022:\u0022height\u002Bwidth\u002Bleft\u002Bright\u002Btop\u002Bbottom\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinewidth\u0022:2.0},\u0022annotationdefaults\u0022:{\u0022arrowcolor\u0022:\u0022#2a3f5f\u0022,\u0022arrowhead\u0022:0,\u0022arrowwidth\u0022:1},\u0022shapedefaults\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}},\u0022colorway\u0022:[\u0022rgba(99, 110, 250, 1.0)\u0022,\u0022rgba(239, 85, 59, 1.0)\u0022,\u0022rgba(0, 204, 150, 1.0)\u0022,\u0022rgba(171, 99, 250, 1.0)\u0022,\u0022rgba(255, 161, 90, 1.0)\u0022,\u0022rgba(25, 211, 243, 1.0)\u0022,\u0022rgba(255, 102, 146, 1.0)\u0022,\u0022rgba(182, 232, 128, 1.0)\u0022,\u0022rgba(255, 151, 255, 1.0)\u0022,\u0022rgba(254, 203, 82, 1.0)\u0022]},\u0022data\u0022:{\u0022bar\u0022:[{\u0022marker\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022width\u0022:0.5},\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}},\u0022error_x\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022error_y\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}}],\u0022barpolar\u0022:[{\u0022marker\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022width\u0022:0.5},\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}}}],\u0022carpet\u0022:[{\u0022aaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022endlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022,\u0022minorgridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022startlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022baxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022endlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022,\u0022minorgridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022startlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}}],\u0022choropleth\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022contour\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022contourcarpet\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}],\u0022heatmap\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022heatmapgl\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022histogram\u0022:[{\u0022marker\u0022:{\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}}}],\u0022histogram2d\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022histogram2dcontour\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022mesh3d\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}],\u0022parcoords\u0022:[{\u0022line\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022pie\u0022:[{\u0022automargin\u0022:true}],\u0022scatter\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatter3d\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}},\u0022line\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattercarpet\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattergeo\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattergl\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattermapbox\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterpolar\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterpolargl\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterternary\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022surface\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022table\u0022:[{\u0022cells\u0022:{\u0022fill\u0022:{\u0022color\u0022:\u0022rgba(235, 240, 248, 1.0)\u0022},\u0022line\u0022:{\u0022color\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022}},\u0022header\u0022:{\u0022fill\u0022:{\u0022color\u0022:\u0022rgba(200, 212, 227, 1.0)\u0022},\u0022line\u0022:{\u0022color\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022}}}]}},\u0022title\u0022:{\u0022text\u0022:\u0022lynx\u0022},\u0022xaxis\u0022:{},\u0022yaxis\u0022:{},\u0022xaxis2\u0022:{},\u0022yaxis2\u0022:{},\u0022grid\u0022:{\u0022rows\u0022:2,\u0022columns\u0022:1,\u0022pattern\u0022:\u0022independent\u0022}};\n var config = {\u0022responsive\u0022:true};\n Plotly.newPlot(\u0027b5e1d1a6-a867-4e8d-afb9-e5fd0a5056ce\u0027, data, layout, config);\n};\nrenderPlotly_b5e1d1a6a8674e8dafb9e5fd0a5056ce();\n\nFitting to real data\nFirst, we must load in the real data, which is in a CSV file. Here, we will use\nthe FSharp.Data type provider to read in the CSV file (see the FSharp.Data docs\nfor further information on how to use the library). We place the raw data into\na Bristlecone TimeSeries type using TimeSeries.fromObservations:\n[\u0026lt;Literal\u0026gt;]\nlet ResolutionFolder = __SOURCE_DIRECTORY__\n\ntype PopulationData = FSharp.Data.CsvProvider\u0026lt;\u0026quot;data/lynx-hare.csv\u0026quot;, ResolutionFolder = ResolutionFolder\u0026gt;\n\nlet data = \n let csv = PopulationData.Load (__SOURCE_DIRECTORY__ \u002B \u0026quot;/data/lynx-hare.csv\u0026quot;)\n [ (code \u0026quot;hare\u0026quot;).Value, Time.TimeSeries.fromObservations (csv.Rows |\u0026gt; Seq.map(fun r -\u0026gt; float r.Hare, r.Year))\n (code \u0026quot;lynx\u0026quot;).Value, Time.TimeSeries.fromObservations (csv.Rows |\u0026gt; Seq.map(fun r -\u0026gt; float r.Lynx, r.Year)) ] |\u0026gt; Map.ofList\n\nmap\n [(ShortCode \u0022hare\u0022,\n FixedTimeSeries\n ((19.58, 1/1/1845 12:00:00 AM),\n TimeSteps\n [|(19.6, 365.00:00:00); (19.61, 365.00:00:00); (11.99, 365.00:00:00);\n (28.04, 366.00:00:00); (58.0, 365.00:00:00); (74.6, 365.00:00:00);\n (75.09, 365.00:00:00); (88.48, 366.00:00:00); (61.28, 365.00:00:00);\n (74.67, 365.00:00:00); (88.06, 365.00:00:00); (68.51, 366.00:00:00);\n (32.19, 365.00:00:00); (12.64, 365.00:00:00); (21.49, 365.00:00:00);\n (30.35, 366.00:00:00); (2.18, 365.00:00:00); (152.65, 365.00:00:00);\n (148.36, 365.00:00:00); (85.81, 366.00:00:00); (41.41, 365.00:00:00);\n (14.75, 365.00:00:00); (2.28, 365.00:00:00); (5.91, 366.00:00:00);\n (9.95, 365.00:00:00); (10.44, 365.00:00:00); (70.64, 365.00:00:00);\n (50.12, 366.00:00:00); (50.13, 365.00:00:00); (101.25, 365.00:00:00);\n (97.12, 365.00:00:00); (86.51, 366.00:00:00); (72.17, 365.00:00:00);\n (38.32, 365.00:00:00); (10.11, 365.00:00:00); (7.74, 366.00:00:00);\n (9.67, 365.00:00:00); (43.12, 365.00:00:00); (52.21, 365.00:00:00);\n (134.85, 366.00:00:00); (134.86, 365.00:00:00); (103.79, 365.00:00:00);\n (46.1, 365.00:00:00); (15.03, 366.00:00:00); (24.2, 365.00:00:00);\n (41.65, 365.00:00:00); (52.34, 365.00:00:00); (53.78, 366.00:00:00);\n (70.4, 365.00:00:00); (85.81, 365.00:00:00); (56.69, 365.00:00:00);\n (16.59, 366.00:00:00); (6.16, 365.00:00:00); (2.3, 365.00:00:00);\n (12.82, 365.00:00:00); (4.72, 365.00:00:00); (4.73, 365.00:00:00);\n (37.22, 365.00:00:00); (69.72, 365.00:00:00); (57.78, 366.00:00:00);\n (28.68, 365.00:00:00); (23.37, 365.00:00:00); (21.54, 365.00:00:00);\n (26.34, 366.00:00:00); (53.1, 365.00:00:00); (68.48, 365.00:00:00);\n (75.58, 365.00:00:00); (57.92, 366.00:00:00); (40.97, 365.00:00:00);\n (24.95, 365.00:00:00); (12.59, 365.00:00:00); (4.97, 366.00:00:00);\n (4.5, 365.00:00:00); (11.21, 365.00:00:00); (56.6, 365.00:00:00);\n (69.63, 366.00:00:00); (77.74, 365.00:00:00); (80.53, 365.00:00:00);\n (73.38, 365.00:00:00); (36.93, 366.00:00:00); (4.64, 365.00:00:00);\n (2.54, 365.00:00:00); (1.8, 365.00:00:00); (2.39, 366.00:00:00);\n (4.23, 365.00:00:00); (19.52, 365.00:00:00); (82.11, 365.00:00:00);\n (89.76, 366.00:00:00); (81.66, 365.00:00:00); (15.76, 365.00:00:00)|]));\n (ShortCode \u0022lynx\u0022,\n FixedTimeSeries\n ((30.09, 1/1/1845 12:00:00 AM),\n TimeSteps\n [|(45.15, 365.00:00:00); (49.15, 365.00:00:00); (39.52, 365.00:00:00);\n (21.23, 366.00:00:00); (8.42, 365.00:00:00); (5.56, 365.00:00:00);\n (5.08, 365.00:00:00); (10.17, 366.00:00:00); (19.6, 365.00:00:00);\n (32.91, 365.00:00:00); (34.38, 365.00:00:00); (29.59, 366.00:00:00);\n (21.3, 365.00:00:00); (13.69, 365.00:00:00); (7.65, 365.00:00:00);\n (4.08, 366.00:00:00); (4.09, 365.00:00:00); (14.33, 365.00:00:00);\n (38.22, 365.00:00:00); (60.78, 366.00:00:00); (70.77, 365.00:00:00);\n (72.77, 365.00:00:00); (42.68, 365.00:00:00); (16.39, 366.00:00:00);\n (9.83, 365.00:00:00); (5.8, 365.00:00:00); (5.26, 365.00:00:00);\n (18.91, 366.00:00:00); (30.95, 365.00:00:00); (31.18, 365.00:00:00);\n (46.34, 365.00:00:00); (45.77, 366.00:00:00); (44.15, 365.00:00:00);\n (36.33, 365.00:00:00); (12.03, 365.00:00:00); (12.6, 366.00:00:00);\n (18.34, 365.00:00:00); (35.14, 365.00:00:00); (43.77, 365.00:00:00);\n (65.69, 366.00:00:00); (79.35, 365.00:00:00); (51.65, 365.00:00:00);\n (32.59, 365.00:00:00); (22.45, 366.00:00:00); (16.16, 365.00:00:00);\n (14.12, 365.00:00:00); (20.38, 365.00:00:00); (33.33, 366.00:00:00);\n (46.0, 365.00:00:00); (51.41, 365.00:00:00); (46.43, 365.00:00:00);\n (33.68, 366.00:00:00); (18.01, 365.00:00:00); (8.86, 365.00:00:00);\n (7.13, 365.00:00:00); (9.47, 365.00:00:00); (14.86, 365.00:00:00);\n (31.47, 365.00:00:00); (60.57, 365.00:00:00); (63.51, 366.00:00:00);\n (54.7, 365.00:00:00); (6.3, 365.00:00:00); (3.41, 365.00:00:00);\n (5.44, 366.00:00:00); (11.65, 365.00:00:00); (20.35, 365.00:00:00);\n (32.88, 365.00:00:00); (39.55, 366.00:00:00); (43.36, 365.00:00:00);\n (40.83, 365.00:00:00); (30.36, 365.00:00:00); (17.18, 366.00:00:00);\n (6.82, 365.00:00:00); (3.19, 365.00:00:00); (3.52, 365.00:00:00);\n (9.94, 366.00:00:00); (20.3, 365.00:00:00); (31.99, 365.00:00:00);\n (42.36, 365.00:00:00); (49.08, 366.00:00:00); (53.99, 365.00:00:00);\n (52.25, 365.00:00:00); (37.7, 365.00:00:00); (19.14, 366.00:00:00);\n (6.98, 365.00:00:00); (8.31, 365.00:00:00); (16.01, 365.00:00:00);\n (24.82, 366.00:00:00); (29.7, 365.00:00:00); (35.4, 365.00:00:00)|]))]\nOnce the data are in Bristlecone TimeSeries we can run Bristlecone.fit, which is\nthe main fitting function of the Bristlecone library.\nlet endCondition = Optimisation.EndConditions.afterIteration 10000\n\nlet result = \n \u0060\u0060predator-prey\u0060\u0060 \n |\u0026gt; Bristlecone.fit engine endCondition data\n\nOk\n { ResultId = 9aa36fc8-dfbe-4c65-9682-d09883ba531c\n Likelihood = 161725.5183\n Parameters =\n Pool\n (map\n [(ShortCode \u0022\u0394\u0022,\n Parameter (Unconstrained, Detached, Estimated -0.03600395794));\n (ShortCode \u0022\u03B1\u0022,\n Parameter (Unconstrained, Detached, Estimated 0.05889427162));\n (ShortCode \u0022\u03B2\u0022,\n Parameter (Unconstrained, Detached, Estimated -0.0572017005));\n (ShortCode \u0022\u03B3\u0022,\n Parameter (Unconstrained, Detached, Estimated 0.3963112829));\n (ShortCode \u0022\u03C1\u0022,\n Parameter (Unconstrained, Detached, Estimated -0.7329319289));\n (ShortCode \u0022\u03C3[x]\u0022,\n Parameter (PositiveOnly, Detached, Estimated 0.0402635584));\n (ShortCode \u0022\u03C3[y]\u0022,\n Parameter (PositiveOnly, Detached, Estimated 0.1679047933))])\n Series =\n map\n [(ShortCode \u0022hare\u0022,\n FixedTimeSeries\n (({ Fit = 48.97948066\n Obs = 19.58 }, 1/1/1845 12:00:00 AM),\n TimeSteps\n [|({ Fit = 55.28946519\n Obs = 19.6 }, 365.00:00:00); ({ Fit = 59.64672094\n Obs = 19.61 }, 365.00:00:00);\n ({ Fit = 63.11542067\n Obs = 11.99 }, 365.00:00:00); ({ Fit = 65.48611048\n Obs = 28.04 }, 366.00:00:00);\n ({ Fit = 65.38963298\n Obs = 58.0 }, 365.00:00:00); ({ Fit = 59.36101124\n Obs = 74.6 }, 365.00:00:00);\n ({ Fit = 47.80253297\n Obs = 75.09 }, 365.00:00:00); ({ Fit = 49.43514849\n Obs = 88.48 }, 366.00:00:00);\n ({ Fit = 48.31813548\n Obs = 61.28 }, 365.00:00:00); ({ Fit = 48.96762773\n Obs = 74.67 }, 365.00:00:00);\n ({ Fit = 48.49743848\n Obs = 88.06 }, 365.00:00:00); ({ Fit = 48.7669053\n Obs = 68.51 }, 366.00:00:00);\n ({ Fit = 48.55866582\n Obs = 32.19 }, 365.00:00:00); ({ Fit = 48.6726493\n Obs = 12.64 }, 365.00:00:00);\n ({ Fit = 48.57712909\n Obs = 21.49 }, 365.00:00:00); ({ Fit = 48.62548059\n Obs = 30.35 }, 366.00:00:00);\n ({ Fit = 48.5804187\n Obs = 2.18 }, 365.00:00:00); ({ Fit = 48.60065825\n Obs = 152.65 }, 365.00:00:00);\n ({ Fit = 48.57885336\n Obs = 148.36 }, 365.00:00:00); ({ Fit = 48.58703836\n Obs = 85.81 }, 366.00:00:00);\n ({ Fit = 48.57621704\n Obs = 41.41 }, 365.00:00:00); ({ Fit = 48.57929735\n Obs = 14.75 }, 365.00:00:00);\n ({ Fit = 48.5737826\n Obs = 2.28 }, 365.00:00:00); ({ Fit = 48.57476603\n Obs = 5.91 }, 366.00:00:00);\n ({ Fit = 48.57187543\n Obs = 9.95 }, 365.00:00:00); ({ Fit = 48.57204853\n Obs = 10.44 }, 365.00:00:00);\n ({ Fit = 48.57048838\n Obs = 70.64 }, 365.00:00:00); ({ Fit = 48.57038684\n Obs = 50.12 }, 366.00:00:00);\n ({ Fit = 48.56951967\n Obs = 50.13 }, 365.00:00:00); ({ Fit = 48.56935516\n Obs = 101.25 }, 365.00:00:00);\n ({ Fit = 48.56885941\n Obs = 97.12 }, 365.00:00:00); ({ Fit = 48.5687071\n Obs = 86.51 }, 366.00:00:00);\n ({ Fit = 48.56841632\n Obs = 72.17 }, 365.00:00:00); ({ Fit = 48.56829641\n Obs = 38.32 }, 365.00:00:00);\n ({ Fit = 48.568122\n Obs = 10.11 }, 365.00:00:00); ({ Fit = 48.56803443\n Obs = 7.74 }, 366.00:00:00);\n ({ Fit = 48.56792786\n Obs = 9.67 }, 365.00:00:00); ({ Fit = 48.56786651\n Obs = 43.12 }, 365.00:00:00);\n ({ Fit = 48.56780041\n Obs = 52.21 }, 365.00:00:00); ({ Fit = 48.5677585\n Obs = 134.85 }, 366.00:00:00);\n ({ Fit = 48.56771702\n Obs = 134.86 }, 365.00:00:00); ({ Fit = 48.56768885\n Obs = 103.79 }, 365.00:00:00);\n ({ Fit = 48.56766258\n Obs = 46.1 }, 365.00:00:00); ({ Fit = 48.56764385\n Obs = 15.03 }, 366.00:00:00);\n ({ Fit = 48.5676271\n Obs = 24.2 }, 365.00:00:00); ({ Fit = 48.56761473\n Obs = 41.65 }, 365.00:00:00);\n ({ Fit = 48.567604\n Obs = 52.34 }, 365.00:00:00); ({ Fit = 48.56759588\n Obs = 53.78 }, 366.00:00:00);\n ({ Fit = 48.56758898\n Obs = 70.4 }, 365.00:00:00); ({ Fit = 48.56758367\n Obs = 85.81 }, 365.00:00:00);\n ({ Fit = 48.56757922\n Obs = 56.69 }, 365.00:00:00); ({ Fit = 48.56757575\n Obs = 16.59 }, 366.00:00:00);\n ({ Fit = 48.56757287\n Obs = 6.16 }, 365.00:00:00); ({ Fit = 48.56757061\n Obs = 2.3 }, 365.00:00:00);\n ({ Fit = 48.56756875\n Obs = 12.82 }, 365.00:00:00); ({ Fit = 48.56756728\n Obs = 4.72 }, 365.00:00:00);\n ({ Fit = 48.56756607\n Obs = 4.73 }, 365.00:00:00); ({ Fit = 48.56756512\n Obs = 37.22 }, 365.00:00:00);\n ({ Fit = 48.56756434\n Obs = 69.72 }, 365.00:00:00); ({ Fit = 48.56756371\n Obs = 57.78 }, 366.00:00:00);\n ({ Fit = 48.56756321\n Obs = 28.68 }, 365.00:00:00); ({ Fit = 48.5675628\n Obs = 23.37 }, 365.00:00:00);\n ({ Fit = 48.56756248\n Obs = 21.54 }, 365.00:00:00); ({ Fit = 48.56756221\n Obs = 26.34 }, 366.00:00:00);\n ({ Fit = 48.567562\n Obs = 53.1 }, 365.00:00:00); ({ Fit = 48.56756183\n Obs = 68.48 }, 365.00:00:00);\n ({ Fit = 48.56756169\n Obs = 75.58 }, 365.00:00:00); ({ Fit = 48.56756158\n Obs = 57.92 }, 366.00:00:00);\n ({ Fit = 48.56756149\n Obs = 40.97 }, 365.00:00:00); ({ Fit = 48.56756142\n Obs = 24.95 }, 365.00:00:00);\n ({ Fit = 48.56756136\n Obs = 12.59 }, 365.00:00:00); ({ Fit = 48.56756131\n Obs = 4.97 }, 366.00:00:00);\n ({ Fit = 48.56756128\n Obs = 4.5 }, 365.00:00:00); ({ Fit = 48.56756125\n Obs = 11.21 }, 365.00:00:00);\n ({ Fit = 48.56756122\n Obs = 56.6 }, 365.00:00:00); ({ Fit = 48.5675612\n Obs = 69.63 }, 366.00:00:00);\n ({ Fit = 48.56756119\n Obs = 77.74 }, 365.00:00:00); ({ Fit = 48.56756117\n Obs = 80.53 }, 365.00:00:00);\n ({ Fit = 48.56756116\n Obs = 73.38 }, 365.00:00:00); ({ Fit = 48.56756115\n Obs = 36.93 }, 366.00:00:00);\n ({ Fit = 48.56756115\n Obs = 4.64 }, 365.00:00:00); ({ Fit = 48.56756114\n Obs = 2.54 }, 365.00:00:00);\n ({ Fit = 48.56756114\n Obs = 1.8 }, 365.00:00:00); ({ Fit = 48.56756113\n Obs = 2.39 }, 366.00:00:00);\n ({ Fit = 48.56756113\n Obs = 4.23 }, 365.00:00:00); ({ Fit = 48.56756113\n Obs = 19.52 }, 365.00:00:00);\n ({ Fit = 48.56756113\n Obs = 82.11 }, 365.00:00:00); ({ Fit = 48.56756113\n Obs = 89.76 }, 366.00:00:00);\n ({ Fit = 48.56756113\n Obs = 81.66 }, 365.00:00:00); ({ Fit = 48.56756112\n Obs = 15.76 }, 365.00:00:00)|]));\n (ShortCode \u0022lynx\u0022,\n FixedTimeSeries\n (({ Fit = 6.777390842\n Obs = 30.09 }, 1/1/1845 12:00:00 AM),\n TimeSteps\n [|({ Fit = 4.186350509\n Obs = 45.15 }, 365.00:00:00); ({ Fit = 3.417986048\n Obs = 49.15 }, 365.00:00:00);\n ({ Fit = 3.506861\n Obs = 39.52 }, 365.00:00:00); ({ Fit = 4.510855681\n Obs = 21.23 }, 366.00:00:00);\n ({ Fit = 7.255981932\n Obs = 8.42 }, 365.00:00:00); ({ Fit = 13.77009301\n Obs = 5.56 }, 365.00:00:00);\n ({ Fit = 22.94139975\n Obs = 5.08 }, 365.00:00:00); ({ Fit = 21.81606632\n Obs = 10.17 }, 366.00:00:00);\n ({ Fit = 22.69996507\n Obs = 19.6 }, 365.00:00:00); ({ Fit = 22.27096224\n Obs = 32.91 }, 365.00:00:00);\n ({ Fit = 22.65570078\n Obs = 34.38 }, 365.00:00:00); ({ Fit = 22.48901678\n Obs = 29.59 }, 366.00:00:00);\n ({ Fit = 22.66714995\n Obs = 21.3 }, 365.00:00:00); ({ Fit = 22.603698\n Obs = 13.69 }, 365.00:00:00);\n ({ Fit = 22.69011213\n Obs = 7.65 }, 365.00:00:00); ({ Fit = 22.66773814\n Obs = 4.08 }, 366.00:00:00);\n ({ Fit = 22.71136497\n Obs = 4.09 }, 365.00:00:00); ({ Fit = 22.70501686\n Obs = 14.33 }, 365.00:00:00);\n ({ Fit = 22.72786185\n Obs = 38.22 }, 365.00:00:00); ({ Fit = 22.72737247\n Obs = 60.78 }, 366.00:00:00);\n ({ Fit = 22.73975277\n Obs = 70.77 }, 365.00:00:00); ({ Fit = 22.74107167\n Obs = 72.77 }, 365.00:00:00);\n ({ Fit = 22.74799912\n Obs = 42.68 }, 365.00:00:00); ({ Fit = 22.74959988\n Obs = 16.39 }, 366.00:00:00);\n ({ Fit = 22.75359056\n Obs = 9.83 }, 365.00:00:00); ({ Fit = 22.75497058\n Obs = 5.8 }, 365.00:00:00);\n ({ Fit = 22.75732884\n Obs = 5.26 }, 365.00:00:00); ({ Fit = 22.75838137\n Obs = 18.91 }, 366.00:00:00);\n ({ Fit = 22.7598053\n Obs = 30.95 }, 365.00:00:00); ({ Fit = 22.76056076\n Obs = 31.18 }, 365.00:00:00);\n ({ Fit = 22.76143576\n Obs = 46.34 }, 365.00:00:00); ({ Fit = 22.76195949\n Obs = 45.77 }, 366.00:00:00);\n ({ Fit = 22.76250469\n Obs = 44.15 }, 365.00:00:00); ({ Fit = 22.76286007\n Obs = 36.33 }, 365.00:00:00);\n ({ Fit = 22.76320344\n Obs = 12.03 }, 365.00:00:00); ({ Fit = 22.76344125\n Obs = 12.6 }, 366.00:00:00);\n ({ Fit = 22.76365926\n Obs = 18.34 }, 365.00:00:00); ({ Fit = 22.76381693\n Obs = 35.14 }, 365.00:00:00);\n ({ Fit = 22.76395619\n Obs = 43.77 }, 365.00:00:00); ({ Fit = 22.76406006\n Obs = 65.69 }, 366.00:00:00);\n ({ Fit = 22.7641494\n Obs = 79.35 }, 365.00:00:00); ({ Fit = 22.76421753\n Obs = 51.65 }, 365.00:00:00);\n ({ Fit = 22.76427505\n Obs = 32.59 }, 365.00:00:00); ({ Fit = 22.7643196\n Obs = 22.45 }, 366.00:00:00);\n ({ Fit = 22.76435671\n Obs = 16.16 }, 365.00:00:00); ({ Fit = 22.76438577\n Obs = 14.12 }, 365.00:00:00);\n ({ Fit = 22.76440976\n Obs = 20.38 }, 365.00:00:00); ({ Fit = 22.7644287\n Obs = 33.33 }, 366.00:00:00);\n ({ Fit = 22.76444422\n Obs = 46.0 }, 365.00:00:00); ({ Fit = 22.76445654\n Obs = 51.41 }, 365.00:00:00);\n ({ Fit = 22.76446659\n Obs = 46.43 }, 365.00:00:00); ({ Fit = 22.76447461\n Obs = 33.68 }, 366.00:00:00);\n ({ Fit = 22.76448112\n Obs = 18.01 }, 365.00:00:00); ({ Fit = 22.76448633\n Obs = 8.86 }, 365.00:00:00);\n ({ Fit = 22.76449056\n Obs = 7.13 }, 365.00:00:00); ({ Fit = 22.76449394\n Obs = 9.47 }, 365.00:00:00);\n ({ Fit = 22.76449668\n Obs = 14.86 }, 365.00:00:00); ({ Fit = 22.76449888\n Obs = 31.47 }, 365.00:00:00);\n ({ Fit = 22.76450066\n Obs = 60.57 }, 365.00:00:00); ({ Fit = 22.76450209\n Obs = 63.51 }, 366.00:00:00);\n ({ Fit = 22.76450324\n Obs = 54.7 }, 365.00:00:00); ({ Fit = 22.76450417\n Obs = 6.3 }, 365.00:00:00);\n ({ Fit = 22.76450491\n Obs = 3.41 }, 365.00:00:00); ({ Fit = 22.76450552\n Obs = 5.44 }, 366.00:00:00);\n ({ Fit = 22.764506\n Obs = 11.65 }, 365.00:00:00); ({ Fit = 22.76450639\n Obs = 20.35 }, 365.00:00:00);\n ({ Fit = 22.76450671\n Obs = 32.88 }, 365.00:00:00); ({ Fit = 22.76450696\n Obs = 39.55 }, 366.00:00:00);\n ({ Fit = 22.76450717\n Obs = 43.36 }, 365.00:00:00); ({ Fit = 22.76450733\n Obs = 40.83 }, 365.00:00:00);\n ({ Fit = 22.76450746\n Obs = 30.36 }, 365.00:00:00); ({ Fit = 22.76450757\n Obs = 17.18 }, 366.00:00:00);\n ({ Fit = 22.76450766\n Obs = 6.82 }, 365.00:00:00); ({ Fit = 22.76450773\n Obs = 3.19 }, 365.00:00:00);\n ({ Fit = 22.76450778\n Obs = 3.52 }, 365.00:00:00); ({ Fit = 22.76450783\n Obs = 9.94 }, 366.00:00:00);\n ({ Fit = 22.76450786\n Obs = 20.3 }, 365.00:00:00); ({ Fit = 22.76450789\n Obs = 31.99 }, 365.00:00:00);\n ({ Fit = 22.76450792\n Obs = 42.36 }, 365.00:00:00); ({ Fit = 22.76450793\n Obs = 49.08 }, 366.00:00:00);\n ({ Fit = 22.76450795\n Obs = 53.99 }, 365.00:00:00); ({ Fit = 22.76450796\n Obs = 52.25 }, 365.00:00:00);\n ({ Fit = 22.76450797\n Obs = 37.7 }, 365.00:00:00); ({ Fit = 22.76450798\n Obs = 19.14 }, 366.00:00:00);\n ({ Fit = 22.76450799\n Obs = 6.98 }, 365.00:00:00); ({ Fit = 22.76450799\n Obs = 8.31 }, 365.00:00:00);\n ({ Fit = 22.764508\n Obs = 16.01 }, 365.00:00:00); ({ Fit = 22.764508\n Obs = 24.82 }, 366.00:00:00);\n ({ Fit = 22.764508\n Obs = 29.7 }, 365.00:00:00); ({ Fit = 22.764508\n Obs = 35.4 }, 365.00:00:00)|]))]\n Trace =\n [(161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]);\n (161725.5183,\n [|-0.03600395794; 0.05889427162; -0.0572017005; 0.3963112829;\n -0.7329319289; 0.0402635584; 0.1679047933|]); ...]\n InternalDynamics =\n Some\n (map\n [(ShortCode \u0022hare\u0022,\n [|48.97948066; 55.28946519; 59.64672094; 63.11542067; 65.48611048;\n 65.38963298; 59.36101124; 47.80253297; 49.43514849; 48.31813548;\n 48.96762773; 48.49743848; 48.7669053; 48.55866582; 48.6726493;\n 48.57712909; 48.62548059; 48.5804187; 48.60065825; 48.57885336;\n 48.58703836; 48.57621704; 48.57929735; 48.5737826; 48.57476603;\n 48.57187543; 48.57204853; 48.57048838; 48.57038684; 48.56951967;\n 48.56935516; 48.56885941; 48.5687071; 48.56841632; 48.56829641;\n 48.568122; 48.56803443; 48.56792786; 48.56786651; 48.56780041;\n 48.5677585; 48.56771702; 48.56768885; 48.56766258; 48.56764385;\n 48.5676271; 48.56761473; 48.567604; 48.56759588; 48.56758898;\n 48.56758367; 48.56757922; 48.56757575; 48.56757287; 48.56757061;\n 48.56756875; 48.56756728; 48.56756607; 48.56756512; 48.56756434;\n 48.56756371; 48.56756321; 48.5675628; 48.56756248; 48.56756221;\n 48.567562; 48.56756183; 48.56756169; 48.56756158; 48.56756149;\n 48.56756142; 48.56756136; 48.56756131; 48.56756128; 48.56756125;\n 48.56756122; 48.5675612; 48.56756119; 48.56756117; 48.56756116;\n 48.56756115; 48.56756115; 48.56756114; 48.56756114; 48.56756113;\n 48.56756113; 48.56756113; 48.56756113; 48.56756113; 48.56756113;\n 48.56756112|]);\n (ShortCode \u0022lynx\u0022,\n [|6.777390842; 4.186350509; 3.417986048; 3.506861; 4.510855681;\n 7.255981932; 13.77009301; 22.94139975; 21.81606632; 22.69996507;\n 22.27096224; 22.65570078; 22.48901678; 22.66714995; 22.603698;\n 22.69011213; 22.66773814; 22.71136497; 22.70501686; 22.72786185;\n 22.72737247; 22.73975277; 22.74107167; 22.74799912; 22.74959988;\n 22.75359056; 22.75497058; 22.75732884; 22.75838137; 22.7598053;\n 22.76056076; 22.76143576; 22.76195949; 22.76250469; 22.76286007;\n 22.76320344; 22.76344125; 22.76365926; 22.76381693; 22.76395619;\n 22.76406006; 22.7641494; 22.76421753; 22.76427505; 22.7643196;\n 22.76435671; 22.76438577; 22.76440976; 22.7644287; 22.76444422;\n 22.76445654; 22.76446659; 22.76447461; 22.76448112; 22.76448633;\n 22.76449056; 22.76449394; 22.76449668; 22.76449888; 22.76450066;\n 22.76450209; 22.76450324; 22.76450417; 22.76450491; 22.76450552;\n 22.764506; 22.76450639; 22.76450671; 22.76450696; 22.76450717;\n 22.76450733; 22.76450746; 22.76450757; 22.76450766; 22.76450773;\n 22.76450778; 22.76450783; 22.76450786; 22.76450789; 22.76450792;\n 22.76450793; 22.76450795; 22.76450796; 22.76450797; 22.76450798;\n 22.76450799; 22.76450799; 22.764508; 22.764508; 22.764508;\n 22.764508|])]) }\nInspecting the model fit\nThe Bristlecone.fit function returns an EstimationResult, which contains some\nkey information that may be used to inspect the model fit:\n\nLikelihood. The minimum likelihood identified during optimisation.\nParameters. The parameter set (\u03B8) identified at the minimum likelihood.\nSeries. A TimeSeries for each variable in the model, which at each time point contains paired Modelled-Observed values.\nTrace. The likelihood and \u03B8 that occurred at each step in optimisation, with the latest first.\nInternal Dynamics. Not relevant for this simple model.\n\nFirst, we can use the Series to inspect by eye the model fit versus the observed time-series:\nvar renderPlotly_69ef57595b584d20b7b4071a81753a48 = function() {\n var data = [{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Modelled\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221845-01-01T00:00:00\u002B00:00\u0022,\u00221846-01-01T00:00:00\u002B00:00\u0022,\u00221847-01-01T00:00:00\u002B00:00\u0022,\u00221848-01-01T00:00:00\u002B00:00\u0022,\u00221849-01-01T00:00:00\u002B00:00\u0022,\u00221850-01-01T00:00:00\u002B00:00\u0022,\u00221851-01-01T00:00:00\u002B00:00\u0022,\u00221852-01-01T00:00:00\u002B00:00\u0022,\u00221853-01-01T00:00:00\u002B00:00\u0022,\u00221854-01-01T00:00:00\u002B00:00\u0022,\u00221855-01-01T00:00:00\u002B00:00\u0022,\u00221856-01-01T00:00:00\u002B00:00\u0022,\u00221857-01-01T00:00:00\u002B00:00\u0022,\u00221858-01-01T00:00:00\u002B00:00\u0022,\u00221859-01-01T00:00:00\u002B00:00\u0022,\u00221860-01-01T00:00:00\u002B00:00\u0022,\u00221861-01-01T00:00:00\u002B00:00\u0022,\u00221862-01-01T00:00:00\u002B00:00\u0022,\u00221863-01-01T00:00:00\u002B00:00\u0022,\u00221864-01-01T00:00:00\u002B00:00\u0022,\u00221865-01-01T00:00:00\u002B00:00\u0022,\u00221866-01-01T00:00:00\u002B00:00\u0022,\u00221867-01-01T00:00:00\u002B00:00\u0022,\u00221868-01-01T00:00:00\u002B00:00\u0022,\u00221869-01-01T00:00:00\u002B00:00\u0022,\u00221870-01-01T00:00:00\u002B00:00\u0022,\u00221871-01-01T00:00:00\u002B00:00\u0022,\u00221872-01-01T00:00:00\u002B00:00\u0022,\u00221873-01-01T00:00:00\u002B00:00\u0022,\u00221874-01-01T00:00:00\u002B00:00\u0022,\u00221875-01-01T00:00:00\u002B00:00\u0022,\u00221876-01-01T00:00:00\u002B00:00\u0022,\u00221877-01-01T00:00:00\u002B00:00\u0022,\u00221878-01-01T00:00:00\u002B00:00\u0022,\u00221879-01-01T00:00:00\u002B00:00\u0022,\u00221880-01-01T00:00:00\u002B00:00\u0022,\u00221881-01-01T00:00:00\u002B00:00\u0022,\u00221882-01-01T00:00:00\u002B00:00\u0022,\u00221883-01-01T00:00:00\u002B00:00\u0022,\u00221884-01-01T00:00:00\u002B00:00\u0022,\u00221885-01-01T00:00:00\u002B00:00\u0022,\u00221886-01-01T00:00:00\u002B00:00\u0022,\u00221887-01-01T00:00:00\u002B00:00\u0022,\u00221888-01-01T00:00:00\u002B00:00\u0022,\u00221889-01-01T00:00:00\u002B00:00\u0022,\u00221890-01-01T00:00:00\u002B00:00\u0022,\u00221891-01-01T00:00:00\u002B00:00\u0022,\u00221892-01-01T00:00:00\u002B00:00\u0022,\u00221893-01-01T00:00:00\u002B00:00\u0022,\u00221894-01-01T00:00:00\u002B00:00\u0022,\u00221895-01-01T00:00:00\u002B00:00\u0022,\u00221896-01-01T00:00:00\u002B00:00\u0022,\u00221897-01-01T00:00:00\u002B00:00\u0022,\u00221898-01-01T00:00:00\u002B00:00\u0022,\u00221899-01-01T00:00:00\u002B00:00\u0022,\u00221900-01-01T00:00:00\u002B00:00\u0022,\u00221901-01-01T00:00:00\u002B00:00\u0022,\u00221902-01-01T00:00:00\u002B00:00\u0022,\u00221903-01-01T00:00:00\u002B00:00\u0022,\u00221904-01-01T00:00:00\u002B00:00\u0022,\u00221905-01-01T00:00:00\u002B00:00\u0022,\u00221906-01-01T00:00:00\u002B00:00\u0022,\u00221907-01-01T00:00:00\u002B00:00\u0022,\u00221908-01-01T00:00:00\u002B00:00\u0022,\u00221909-01-01T00:00:00\u002B00:00\u0022,\u00221910-01-01T00:00:00\u002B00:00\u0022,\u00221911-01-01T00:00:00\u002B00:00\u0022,\u00221912-01-01T00:00:00\u002B00:00\u0022,\u00221913-01-01T00:00:00\u002B00:00\u0022,\u00221914-01-01T00:00:00\u002B00:00\u0022,\u00221915-01-01T00:00:00\u002B00:00\u0022,\u00221916-01-01T00:00:00\u002B00:00\u0022,\u00221917-01-01T00:00:00\u002B00:00\u0022,\u00221918-01-01T00:00:00\u002B00:00\u0022,\u00221919-01-01T00:00:00\u002B00:00\u0022,\u00221920-01-01T00:00:00\u002B00:00\u0022,\u00221921-01-01T00:00:00\u002B00:00\u0022,\u00221922-01-01T00:00:00\u002B00:00\u0022,\u00221923-01-01T00:00:00\u002B00:00\u0022,\u00221924-01-01T00:00:00\u002B00:00\u0022,\u00221925-01-01T00:00:00\u002B00:00\u0022,\u00221926-01-01T00:00:00\u002B00:00\u0022,\u00221927-01-01T00:00:00\u002B00:00\u0022,\u00221928-01-01T00:00:00\u002B00:00\u0022,\u00221929-01-01T00:00:00\u002B00:00\u0022,\u00221930-01-01T00:00:00\u002B00:00\u0022,\u00221931-01-01T00:00:00\u002B00:00\u0022,\u00221932-01-01T00:00:00\u002B00:00\u0022,\u00221933-01-01T00:00:00\u002B00:00\u0022,\u00221934-01-01T00:00:00\u002B00:00\u0022,\u00221935-01-01T00:00:00\u002B00:00\u0022],\u0022y\u0022:[48.97948066192839,55.289465192157934,59.646720942444226,63.11542067153285,65.48611047814362,65.38963297699486,59.36101124442491,47.80253296651508,49.43514848693441,48.318135481072225,48.96762772803491,48.497438481522636,48.76690530109652,48.558665820128795,48.67264929888481,48.57712909461362,48.625480589206475,48.58041870485377,48.60065824523122,48.578853362932016,48.58703836476499,48.576217038608625,48.57929735387195,48.57378260290986,48.57476603002096,48.571875428315884,48.572048532973255,48.570488376124686,48.57038684033532,48.56951966698471,48.56935515972128,48.5688594102052,48.568707099290876,48.56841632095976,48.568296409361565,48.56812200486543,48.56803443421531,48.5679278626546,48.56786651465427,48.567800409727624,48.567758502784265,48.56771701568595,48.567688848043915,48.567662577041105,48.567643846169624,48.56762709851323,48.56761473318275,48.56760400347279,48.56759588121842,48.56758898196436,48.567583665390046,48.567579217380576,48.56757574582317,48.567572872656264,48.56757060974434,48.56756875127537,48.56756727800997,48.5675660746918,48.56756511635432,48.567564336677606,48.56756371367633,48.567563208236045,48.567562803409054,48.56756247562829,48.567562212653165,48.567562000030186,48.56756182923975,48.56756169129098,48.56756158038785,48.56756149087546,48.567561418868415,48.56756136077998,48.567561314031096,48.56756127633245,48.56756124598357,48.56756122151644,48.56756120181509,48.56756118593495,48.56756117314588,48.56756116283881,48.56756115453706,48.56756114784702,48.56756114245818,48.56756113811586,48.567561134617875,48.56756113179936,48.56756112952881,48.56756112769931,48.567561126225506,48.567561125037976,48.56756112408135],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x\u0022,\u0022yaxis\u0022:\u0022y\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Observed\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221845-01-01T00:00:00\u002B00:00\u0022,\u00221846-01-01T00:00:00\u002B00:00\u0022,\u00221847-01-01T00:00:00\u002B00:00\u0022,\u00221848-01-01T00:00:00\u002B00:00\u0022,\u00221849-01-01T00:00:00\u002B00:00\u0022,\u00221850-01-01T00:00:00\u002B00:00\u0022,\u00221851-01-01T00:00:00\u002B00:00\u0022,\u00221852-01-01T00:00:00\u002B00:00\u0022,\u00221853-01-01T00:00:00\u002B00:00\u0022,\u00221854-01-01T00:00:00\u002B00:00\u0022,\u00221855-01-01T00:00:00\u002B00:00\u0022,\u00221856-01-01T00:00:00\u002B00:00\u0022,\u00221857-01-01T00:00:00\u002B00:00\u0022,\u00221858-01-01T00:00:00\u002B00:00\u0022,\u00221859-01-01T00:00:00\u002B00:00\u0022,\u00221860-01-01T00:00:00\u002B00:00\u0022,\u00221861-01-01T00:00:00\u002B00:00\u0022,\u00221862-01-01T00:00:00\u002B00:00\u0022,\u00221863-01-01T00:00:00\u002B00:00\u0022,\u00221864-01-01T00:00:00\u002B00:00\u0022,\u00221865-01-01T00:00:00\u002B00:00\u0022,\u00221866-01-01T00:00:00\u002B00:00\u0022,\u00221867-01-01T00:00:00\u002B00:00\u0022,\u00221868-01-01T00:00:00\u002B00:00\u0022,\u00221869-01-01T00:00:00\u002B00:00\u0022,\u00221870-01-01T00:00:00\u002B00:00\u0022,\u00221871-01-01T00:00:00\u002B00:00\u0022,\u00221872-01-01T00:00:00\u002B00:00\u0022,\u00221873-01-01T00:00:00\u002B00:00\u0022,\u00221874-01-01T00:00:00\u002B00:00\u0022,\u00221875-01-01T00:00:00\u002B00:00\u0022,\u00221876-01-01T00:00:00\u002B00:00\u0022,\u00221877-01-01T00:00:00\u002B00:00\u0022,\u00221878-01-01T00:00:00\u002B00:00\u0022,\u00221879-01-01T00:00:00\u002B00:00\u0022,\u00221880-01-01T00:00:00\u002B00:00\u0022,\u00221881-01-01T00:00:00\u002B00:00\u0022,\u00221882-01-01T00:00:00\u002B00:00\u0022,\u00221883-01-01T00:00:00\u002B00:00\u0022,\u00221884-01-01T00:00:00\u002B00:00\u0022,\u00221885-01-01T00:00:00\u002B00:00\u0022,\u00221886-01-01T00:00:00\u002B00:00\u0022,\u00221887-01-01T00:00:00\u002B00:00\u0022,\u00221888-01-01T00:00:00\u002B00:00\u0022,\u00221889-01-01T00:00:00\u002B00:00\u0022,\u00221890-01-01T00:00:00\u002B00:00\u0022,\u00221891-01-01T00:00:00\u002B00:00\u0022,\u00221892-01-01T00:00:00\u002B00:00\u0022,\u00221893-01-01T00:00:00\u002B00:00\u0022,\u00221894-01-01T00:00:00\u002B00:00\u0022,\u00221895-01-01T00:00:00\u002B00:00\u0022,\u00221896-01-01T00:00:00\u002B00:00\u0022,\u00221897-01-01T00:00:00\u002B00:00\u0022,\u00221898-01-01T00:00:00\u002B00:00\u0022,\u00221899-01-01T00:00:00\u002B00:00\u0022,\u00221900-01-01T00:00:00\u002B00:00\u0022,\u00221901-01-01T00:00:00\u002B00:00\u0022,\u00221902-01-01T00:00:00\u002B00:00\u0022,\u00221903-01-01T00:00:00\u002B00:00\u0022,\u00221904-01-01T00:00:00\u002B00:00\u0022,\u00221905-01-01T00:00:00\u002B00:00\u0022,\u00221906-01-01T00:00:00\u002B00:00\u0022,\u00221907-01-01T00:00:00\u002B00:00\u0022,\u00221908-01-01T00:00:00\u002B00:00\u0022,\u00221909-01-01T00:00:00\u002B00:00\u0022,\u00221910-01-01T00:00:00\u002B00:00\u0022,\u00221911-01-01T00:00:00\u002B00:00\u0022,\u00221912-01-01T00:00:00\u002B00:00\u0022,\u00221913-01-01T00:00:00\u002B00:00\u0022,\u00221914-01-01T00:00:00\u002B00:00\u0022,\u00221915-01-01T00:00:00\u002B00:00\u0022,\u00221916-01-01T00:00:00\u002B00:00\u0022,\u00221917-01-01T00:00:00\u002B00:00\u0022,\u00221918-01-01T00:00:00\u002B00:00\u0022,\u00221919-01-01T00:00:00\u002B00:00\u0022,\u00221920-01-01T00:00:00\u002B00:00\u0022,\u00221921-01-01T00:00:00\u002B00:00\u0022,\u00221922-01-01T00:00:00\u002B00:00\u0022,\u00221923-01-01T00:00:00\u002B00:00\u0022,\u00221924-01-01T00:00:00\u002B00:00\u0022,\u00221925-01-01T00:00:00\u002B00:00\u0022,\u00221926-01-01T00:00:00\u002B00:00\u0022,\u00221927-01-01T00:00:00\u002B00:00\u0022,\u00221928-01-01T00:00:00\u002B00:00\u0022,\u00221929-01-01T00:00:00\u002B00:00\u0022,\u00221930-01-01T00:00:00\u002B00:00\u0022,\u00221931-01-01T00:00:00\u002B00:00\u0022,\u00221932-01-01T00:00:00\u002B00:00\u0022,\u00221933-01-01T00:00:00\u002B00:00\u0022,\u00221934-01-01T00:00:00\u002B00:00\u0022,\u00221935-01-01T00:00:00\u002B00:00\u0022],\u0022y\u0022:[19.58,19.6,19.61,11.99,28.04,58.0,74.6,75.09,88.48,61.28,74.67,88.06,68.51,32.19,12.64,21.49,30.35,2.18,152.65,148.36,85.81,41.41,14.75,2.28,5.91,9.95,10.44,70.64,50.12,50.13,101.25,97.12,86.51,72.17,38.32,10.11,7.74,9.67,43.12,52.21,134.85,134.86,103.79,46.1,15.03,24.2,41.65,52.34,53.78,70.4,85.81,56.69,16.59,6.16,2.3,12.82,4.72,4.73,37.22,69.72,57.78,28.68,23.37,21.54,26.34,53.1,68.48,75.58,57.92,40.97,24.95,12.59,4.97,4.5,11.21,56.6,69.63,77.74,80.53,73.38,36.93,4.64,2.54,1.8,2.39,4.23,19.52,82.11,89.76,81.66,15.76],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x\u0022,\u0022yaxis\u0022:\u0022y\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Modelled\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221845-01-01T00:00:00\u002B00:00\u0022,\u00221846-01-01T00:00:00\u002B00:00\u0022,\u00221847-01-01T00:00:00\u002B00:00\u0022,\u00221848-01-01T00:00:00\u002B00:00\u0022,\u00221849-01-01T00:00:00\u002B00:00\u0022,\u00221850-01-01T00:00:00\u002B00:00\u0022,\u00221851-01-01T00:00:00\u002B00:00\u0022,\u00221852-01-01T00:00:00\u002B00:00\u0022,\u00221853-01-01T00:00:00\u002B00:00\u0022,\u00221854-01-01T00:00:00\u002B00:00\u0022,\u00221855-01-01T00:00:00\u002B00:00\u0022,\u00221856-01-01T00:00:00\u002B00:00\u0022,\u00221857-01-01T00:00:00\u002B00:00\u0022,\u00221858-01-01T00:00:00\u002B00:00\u0022,\u00221859-01-01T00:00:00\u002B00:00\u0022,\u00221860-01-01T00:00:00\u002B00:00\u0022,\u00221861-01-01T00:00:00\u002B00:00\u0022,\u00221862-01-01T00:00:00\u002B00:00\u0022,\u00221863-01-01T00:00:00\u002B00:00\u0022,\u00221864-01-01T00:00:00\u002B00:00\u0022,\u00221865-01-01T00:00:00\u002B00:00\u0022,\u00221866-01-01T00:00:00\u002B00:00\u0022,\u00221867-01-01T00:00:00\u002B00:00\u0022,\u00221868-01-01T00:00:00\u002B00:00\u0022,\u00221869-01-01T00:00:00\u002B00:00\u0022,\u00221870-01-01T00:00:00\u002B00:00\u0022,\u00221871-01-01T00:00:00\u002B00:00\u0022,\u00221872-01-01T00:00:00\u002B00:00\u0022,\u00221873-01-01T00:00:00\u002B00:00\u0022,\u00221874-01-01T00:00:00\u002B00:00\u0022,\u00221875-01-01T00:00:00\u002B00:00\u0022,\u00221876-01-01T00:00:00\u002B00:00\u0022,\u00221877-01-01T00:00:00\u002B00:00\u0022,\u00221878-01-01T00:00:00\u002B00:00\u0022,\u00221879-01-01T00:00:00\u002B00:00\u0022,\u00221880-01-01T00:00:00\u002B00:00\u0022,\u00221881-01-01T00:00:00\u002B00:00\u0022,\u00221882-01-01T00:00:00\u002B00:00\u0022,\u00221883-01-01T00:00:00\u002B00:00\u0022,\u00221884-01-01T00:00:00\u002B00:00\u0022,\u00221885-01-01T00:00:00\u002B00:00\u0022,\u00221886-01-01T00:00:00\u002B00:00\u0022,\u00221887-01-01T00:00:00\u002B00:00\u0022,\u00221888-01-01T00:00:00\u002B00:00\u0022,\u00221889-01-01T00:00:00\u002B00:00\u0022,\u00221890-01-01T00:00:00\u002B00:00\u0022,\u00221891-01-01T00:00:00\u002B00:00\u0022,\u00221892-01-01T00:00:00\u002B00:00\u0022,\u00221893-01-01T00:00:00\u002B00:00\u0022,\u00221894-01-01T00:00:00\u002B00:00\u0022,\u00221895-01-01T00:00:00\u002B00:00\u0022,\u00221896-01-01T00:00:00\u002B00:00\u0022,\u00221897-01-01T00:00:00\u002B00:00\u0022,\u00221898-01-01T00:00:00\u002B00:00\u0022,\u00221899-01-01T00:00:00\u002B00:00\u0022,\u00221900-01-01T00:00:00\u002B00:00\u0022,\u00221901-01-01T00:00:00\u002B00:00\u0022,\u00221902-01-01T00:00:00\u002B00:00\u0022,\u00221903-01-01T00:00:00\u002B00:00\u0022,\u00221904-01-01T00:00:00\u002B00:00\u0022,\u00221905-01-01T00:00:00\u002B00:00\u0022,\u00221906-01-01T00:00:00\u002B00:00\u0022,\u00221907-01-01T00:00:00\u002B00:00\u0022,\u00221908-01-01T00:00:00\u002B00:00\u0022,\u00221909-01-01T00:00:00\u002B00:00\u0022,\u00221910-01-01T00:00:00\u002B00:00\u0022,\u00221911-01-01T00:00:00\u002B00:00\u0022,\u00221912-01-01T00:00:00\u002B00:00\u0022,\u00221913-01-01T00:00:00\u002B00:00\u0022,\u00221914-01-01T00:00:00\u002B00:00\u0022,\u00221915-01-01T00:00:00\u002B00:00\u0022,\u00221916-01-01T00:00:00\u002B00:00\u0022,\u00221917-01-01T00:00:00\u002B00:00\u0022,\u00221918-01-01T00:00:00\u002B00:00\u0022,\u00221919-01-01T00:00:00\u002B00:00\u0022,\u00221920-01-01T00:00:00\u002B00:00\u0022,\u00221921-01-01T00:00:00\u002B00:00\u0022,\u00221922-01-01T00:00:00\u002B00:00\u0022,\u00221923-01-01T00:00:00\u002B00:00\u0022,\u00221924-01-01T00:00:00\u002B00:00\u0022,\u00221925-01-01T00:00:00\u002B00:00\u0022,\u00221926-01-01T00:00:00\u002B00:00\u0022,\u00221927-01-01T00:00:00\u002B00:00\u0022,\u00221928-01-01T00:00:00\u002B00:00\u0022,\u00221929-01-01T00:00:00\u002B00:00\u0022,\u00221930-01-01T00:00:00\u002B00:00\u0022,\u00221931-01-01T00:00:00\u002B00:00\u0022,\u00221932-01-01T00:00:00\u002B00:00\u0022,\u00221933-01-01T00:00:00\u002B00:00\u0022,\u00221934-01-01T00:00:00\u002B00:00\u0022,\u00221935-01-01T00:00:00\u002B00:00\u0022],\u0022y\u0022:[6.777390842455542,4.186350508812161,3.4179860478363864,3.506860999751655,4.510855680903218,7.255981932252858,13.770093009482181,22.941399750803114,21.816066322778777,22.699965067756757,22.270962236655215,22.65570078167274,22.48901677865016,22.667149945135296,22.603697996129487,22.690112130956805,22.667738139691863,22.711364969142277,22.705016859366623,22.72786184727826,22.727372468852757,22.739752772396503,22.74107166696288,22.74799912284716,22.749599884387628,22.753590560036795,22.754970580356325,22.757328842688217,22.758381372120958,22.759805300087944,22.760560757273492,22.761435756188206,22.76195949022441,22.762504691612747,22.76286007178192,22.763203438491615,22.763441251010793,22.763659261658916,22.7638169279607,22.76395618523733,22.76406005510165,22.76414940370595,22.76421753339861,22.764275046447473,22.764319597141874,22.764356705092297,22.764385774684897,22.764409757795104,22.764428697120177,22.764444216527806,22.764456542565554,22.764466593954527,22.764474609837777,22.764481123875953,22.76448633395026,22.76449055742725,22.764493942507446,22.764496681746053,22.764498880490333,22.764500657499166,22.76450208539155,22.764503238368786,22.76450416553081,22.764504913705295,22.764505515672116,22.76450600120815,22.764506392011857,22.76450670712467,22.764506960826044,22.764507165342938,22.76450733003445,22.76450746277559,22.764507569683172,22.764507655840344,22.764507725236875,22.764507781159043,22.764507826205552,22.764507862503443,22.7645078917437,22.764507915304034,22.764507934284094,22.76450794957685,22.76450796189689,22.764507971823242,22.764507979820227,22.764507986263332,22.764507991454156,22.764507995636368,22.76450799900572,22.76450800172038,22.7645080039074],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x2\u0022,\u0022yaxis\u0022:\u0022y2\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022name\u0022:\u0022Observed\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[\u00221845-01-01T00:00:00\u002B00:00\u0022,\u00221846-01-01T00:00:00\u002B00:00\u0022,\u00221847-01-01T00:00:00\u002B00:00\u0022,\u00221848-01-01T00:00:00\u002B00:00\u0022,\u00221849-01-01T00:00:00\u002B00:00\u0022,\u00221850-01-01T00:00:00\u002B00:00\u0022,\u00221851-01-01T00:00:00\u002B00:00\u0022,\u00221852-01-01T00:00:00\u002B00:00\u0022,\u00221853-01-01T00:00:00\u002B00:00\u0022,\u00221854-01-01T00:00:00\u002B00:00\u0022,\u00221855-01-01T00:00:00\u002B00:00\u0022,\u00221856-01-01T00:00:00\u002B00:00\u0022,\u00221857-01-01T00:00:00\u002B00:00\u0022,\u00221858-01-01T00:00:00\u002B00:00\u0022,\u00221859-01-01T00:00:00\u002B00:00\u0022,\u00221860-01-01T00:00:00\u002B00:00\u0022,\u00221861-01-01T00:00:00\u002B00:00\u0022,\u00221862-01-01T00:00:00\u002B00:00\u0022,\u00221863-01-01T00:00:00\u002B00:00\u0022,\u00221864-01-01T00:00:00\u002B00:00\u0022,\u00221865-01-01T00:00:00\u002B00:00\u0022,\u00221866-01-01T00:00:00\u002B00:00\u0022,\u00221867-01-01T00:00:00\u002B00:00\u0022,\u00221868-01-01T00:00:00\u002B00:00\u0022,\u00221869-01-01T00:00:00\u002B00:00\u0022,\u00221870-01-01T00:00:00\u002B00:00\u0022,\u00221871-01-01T00:00:00\u002B00:00\u0022,\u00221872-01-01T00:00:00\u002B00:00\u0022,\u00221873-01-01T00:00:00\u002B00:00\u0022,\u00221874-01-01T00:00:00\u002B00:00\u0022,\u00221875-01-01T00:00:00\u002B00:00\u0022,\u00221876-01-01T00:00:00\u002B00:00\u0022,\u00221877-01-01T00:00:00\u002B00:00\u0022,\u00221878-01-01T00:00:00\u002B00:00\u0022,\u00221879-01-01T00:00:00\u002B00:00\u0022,\u00221880-01-01T00:00:00\u002B00:00\u0022,\u00221881-01-01T00:00:00\u002B00:00\u0022,\u00221882-01-01T00:00:00\u002B00:00\u0022,\u00221883-01-01T00:00:00\u002B00:00\u0022,\u00221884-01-01T00:00:00\u002B00:00\u0022,\u00221885-01-01T00:00:00\u002B00:00\u0022,\u00221886-01-01T00:00:00\u002B00:00\u0022,\u00221887-01-01T00:00:00\u002B00:00\u0022,\u00221888-01-01T00:00:00\u002B00:00\u0022,\u00221889-01-01T00:00:00\u002B00:00\u0022,\u00221890-01-01T00:00:00\u002B00:00\u0022,\u00221891-01-01T00:00:00\u002B00:00\u0022,\u00221892-01-01T00:00:00\u002B00:00\u0022,\u00221893-01-01T00:00:00\u002B00:00\u0022,\u00221894-01-01T00:00:00\u002B00:00\u0022,\u00221895-01-01T00:00:00\u002B00:00\u0022,\u00221896-01-01T00:00:00\u002B00:00\u0022,\u00221897-01-01T00:00:00\u002B00:00\u0022,\u00221898-01-01T00:00:00\u002B00:00\u0022,\u00221899-01-01T00:00:00\u002B00:00\u0022,\u00221900-01-01T00:00:00\u002B00:00\u0022,\u00221901-01-01T00:00:00\u002B00:00\u0022,\u00221902-01-01T00:00:00\u002B00:00\u0022,\u00221903-01-01T00:00:00\u002B00:00\u0022,\u00221904-01-01T00:00:00\u002B00:00\u0022,\u00221905-01-01T00:00:00\u002B00:00\u0022,\u00221906-01-01T00:00:00\u002B00:00\u0022,\u00221907-01-01T00:00:00\u002B00:00\u0022,\u00221908-01-01T00:00:00\u002B00:00\u0022,\u00221909-01-01T00:00:00\u002B00:00\u0022,\u00221910-01-01T00:00:00\u002B00:00\u0022,\u00221911-01-01T00:00:00\u002B00:00\u0022,\u00221912-01-01T00:00:00\u002B00:00\u0022,\u00221913-01-01T00:00:00\u002B00:00\u0022,\u00221914-01-01T00:00:00\u002B00:00\u0022,\u00221915-01-01T00:00:00\u002B00:00\u0022,\u00221916-01-01T00:00:00\u002B00:00\u0022,\u00221917-01-01T00:00:00\u002B00:00\u0022,\u00221918-01-01T00:00:00\u002B00:00\u0022,\u00221919-01-01T00:00:00\u002B00:00\u0022,\u00221920-01-01T00:00:00\u002B00:00\u0022,\u00221921-01-01T00:00:00\u002B00:00\u0022,\u00221922-01-01T00:00:00\u002B00:00\u0022,\u00221923-01-01T00:00:00\u002B00:00\u0022,\u00221924-01-01T00:00:00\u002B00:00\u0022,\u00221925-01-01T00:00:00\u002B00:00\u0022,\u00221926-01-01T00:00:00\u002B00:00\u0022,\u00221927-01-01T00:00:00\u002B00:00\u0022,\u00221928-01-01T00:00:00\u002B00:00\u0022,\u00221929-01-01T00:00:00\u002B00:00\u0022,\u00221930-01-01T00:00:00\u002B00:00\u0022,\u00221931-01-01T00:00:00\u002B00:00\u0022,\u00221932-01-01T00:00:00\u002B00:00\u0022,\u00221933-01-01T00:00:00\u002B00:00\u0022,\u00221934-01-01T00:00:00\u002B00:00\u0022,\u00221935-01-01T00:00:00\u002B00:00\u0022],\u0022y\u0022:[30.09,45.15,49.15,39.52,21.23,8.42,5.56,5.08,10.17,19.6,32.91,34.38,29.59,21.3,13.69,7.65,4.08,4.09,14.33,38.22,60.78,70.77,72.77,42.68,16.39,9.83,5.8,5.26,18.91,30.95,31.18,46.34,45.77,44.15,36.33,12.03,12.6,18.34,35.14,43.77,65.69,79.35,51.65,32.59,22.45,16.16,14.12,20.38,33.33,46.0,51.41,46.43,33.68,18.01,8.86,7.13,9.47,14.86,31.47,60.57,63.51,54.7,6.3,3.41,5.44,11.65,20.35,32.88,39.55,43.36,40.83,30.36,17.18,6.82,3.19,3.52,9.94,20.3,31.99,42.36,49.08,53.99,52.25,37.7,19.14,6.98,8.31,16.01,24.82,29.7,35.4],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x2\u0022,\u0022yaxis\u0022:\u0022y2\u0022}];\n var layout = {\u0022width\u0022:600,\u0022height\u0022:600,\u0022template\u0022:{\u0022layout\u0022:{\u0022title\u0022:{\u0022x\u0022:0.05},\u0022font\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022paper_bgcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022plot_bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022autotypenumbers\u0022:\u0022strict\u0022,\u0022colorscale\u0022:{\u0022diverging\u0022:[[0.0,\u0022#8e0152\u0022],[0.1,\u0022#c51b7d\u0022],[0.2,\u0022#de77ae\u0022],[0.3,\u0022#f1b6da\u0022],[0.4,\u0022#fde0ef\u0022],[0.5,\u0022#f7f7f7\u0022],[0.6,\u0022#e6f5d0\u0022],[0.7,\u0022#b8e186\u0022],[0.8,\u0022#7fbc41\u0022],[0.9,\u0022#4d9221\u0022],[1.0,\u0022#276419\u0022]],\u0022sequential\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]],\u0022sequentialminus\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]},\u0022hovermode\u0022:\u0022closest\u0022,\u0022hoverlabel\u0022:{\u0022align\u0022:\u0022left\u0022},\u0022coloraxis\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}},\u0022geo\u0022:{\u0022showland\u0022:true,\u0022landcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showlakes\u0022:true,\u0022lakecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022subunitcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022bgcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022mapbox\u0022:{\u0022style\u0022:\u0022light\u0022},\u0022polar\u0022:{\u0022bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022radialaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022ticks\u0022:\u0022\u0022},\u0022angularaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022ticks\u0022:\u0022\u0022}},\u0022scene\u0022:{\u0022xaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true},\u0022yaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true},\u0022zaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true}},\u0022ternary\u0022:{\u0022aaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022baxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022caxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022},\u0022xaxis\u0022:{\u0022title\u0022:{\u0022standoff\u0022:15},\u0022ticks\u0022:\u0022\u0022,\u0022automargin\u0022:\u0022height\u002Bwidth\u002Bleft\u002Bright\u002Btop\u002Bbottom\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinewidth\u0022:2.0},\u0022yaxis\u0022:{\u0022title\u0022:{\u0022standoff\u0022:15},\u0022ticks\u0022:\u0022\u0022,\u0022automargin\u0022:\u0022height\u002Bwidth\u002Bleft\u002Bright\u002Btop\u002Bbottom\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinewidth\u0022:2.0},\u0022annotationdefaults\u0022:{\u0022arrowcolor\u0022:\u0022#2a3f5f\u0022,\u0022arrowhead\u0022:0,\u0022arrowwidth\u0022:1},\u0022shapedefaults\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}},\u0022colorway\u0022:[\u0022rgba(99, 110, 250, 1.0)\u0022,\u0022rgba(239, 85, 59, 1.0)\u0022,\u0022rgba(0, 204, 150, 1.0)\u0022,\u0022rgba(171, 99, 250, 1.0)\u0022,\u0022rgba(255, 161, 90, 1.0)\u0022,\u0022rgba(25, 211, 243, 1.0)\u0022,\u0022rgba(255, 102, 146, 1.0)\u0022,\u0022rgba(182, 232, 128, 1.0)\u0022,\u0022rgba(255, 151, 255, 1.0)\u0022,\u0022rgba(254, 203, 82, 1.0)\u0022]},\u0022data\u0022:{\u0022bar\u0022:[{\u0022marker\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022width\u0022:0.5},\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}},\u0022error_x\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022error_y\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}}],\u0022barpolar\u0022:[{\u0022marker\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022width\u0022:0.5},\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}}}],\u0022carpet\u0022:[{\u0022aaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022endlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022,\u0022minorgridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022startlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022baxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022endlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022,\u0022minorgridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022startlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}}],\u0022choropleth\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022contour\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022contourcarpet\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}],\u0022heatmap\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022heatmapgl\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022histogram\u0022:[{\u0022marker\u0022:{\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}}}],\u0022histogram2d\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022histogram2dcontour\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022mesh3d\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}],\u0022parcoords\u0022:[{\u0022line\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022pie\u0022:[{\u0022automargin\u0022:true}],\u0022scatter\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatter3d\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}},\u0022line\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattercarpet\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattergeo\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattergl\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattermapbox\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterpolar\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterpolargl\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterternary\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022surface\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022table\u0022:[{\u0022cells\u0022:{\u0022fill\u0022:{\u0022color\u0022:\u0022rgba(235, 240, 248, 1.0)\u0022},\u0022line\u0022:{\u0022color\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022}},\u0022header\u0022:{\u0022fill\u0022:{\u0022color\u0022:\u0022rgba(200, 212, 227, 1.0)\u0022},\u0022line\u0022:{\u0022color\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022}}}]}},\u0022title\u0022:{\u0022text\u0022:\u0022lynx\u0022},\u0022xaxis\u0022:{},\u0022yaxis\u0022:{},\u0022xaxis2\u0022:{},\u0022yaxis2\u0022:{},\u0022grid\u0022:{\u0022rows\u0022:2,\u0022columns\u0022:1,\u0022pattern\u0022:\u0022independent\u0022}};\n var config = {\u0022responsive\u0022:true};\n Plotly.newPlot(\u002769ef5759-5b58-4d20-b7b4-071a81753a48\u0027, data, layout, config);\n};\nrenderPlotly_69ef57595b584d20b7b4071a81753a48();\n\nNB: this documentation is auto-generated so we cannot comment directly on the randomly generated scenario.\nNext, we can examine the traces to see how parameter values evolved over the course of\nthe optimisation routine:\nGraphing.parameterTrace result\n\nvar renderPlotly_e5bba716ece54d6cb54fadc8b34720a4 = function() {\n var data = [{\u0022type\u0022:\u0022scatter\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\u0022y\u0022:[-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.03600395794289428,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.035641841551720704,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.05190117503113316,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.07094715772369362,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.03302461312708895,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,-0.04225640556895279,0.048185169709992835,0.048185169709992835,0.048185169709992835,0.048185169709992835,0.048185169709992835,0.048185169709992835],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x\u0022,\u0022yaxis\u0022:\u0022y\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\u0022y\u0022:[0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05889427162402767,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.05433783675803861,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.04149659077001278,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.031458466862981274,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,0.027229545834791022,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,-0.008887928242600762,0.36256282338853707,0.36256282338853707,0.36256282338853707,0.36256282338853707,0.36256282338853707,0.36256282338853707],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x2\u0022,\u0022yaxis\u0022:\u0022y2\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\u0022y\u0022:[-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.05720170050090356,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.07174933432220623,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.05344183939021943,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.0443567957365384,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.08294076257160363,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,-0.06416082249037633,0.05788216110489436,0.05788216110489436,0.05788216110489436,0.05788216110489436,0.05788216110489436,0.05788216110489436],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x3\u0022,\u0022yaxis\u0022:\u0022y3\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\u0022y\u0022:[0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.3963112828836389,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32875975726143947,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.32423620084112464,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.27134436152710917,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.22209685004938784,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.21181666122336196,0.16118572435378603,0.16118572435378603,0.16118572435378603,0.16118572435378603,0.16118572435378603,0.16118572435378603],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x4\u0022,\u0022yaxis\u0022:\u0022y4\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\u0022y\u0022:[-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.7329319288981656,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.769611349653085,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8371344781400032,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.8891740871085003,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.612282986881667,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,-0.33468958494553025,0.0850941789518054,0.0850941789518054,0.0850941789518054,0.0850941789518054,0.0850941789518054,0.0850941789518054],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x5\u0022,\u0022yaxis\u0022:\u0022y5\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\u0022y\u0022:[0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.040263558396224704,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.02073123461665191,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.006228207710470675,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.027994614835944967,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.03239784930840258,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.04925725489653475,0.06836492227981739,0.06836492227981739,0.06836492227981739,0.06836492227981739,0.06836492227981739,0.06836492227981739],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x6\u0022,\u0022yaxis\u0022:\u0022y6\u0022},{\u0022type\u0022:\u0022scatter\u0022,\u0022mode\u0022:\u0022lines\u0022,\u0022x\u0022:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000],\u0022y\u0022:[0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.16790479326066,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.10213315603058662,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09604024647484069,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.09385704613177104,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.07250949634107641,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.047126605699708696,0.05114572250841975,0.05114572250841975,0.05114572250841975,0.05114572250841975,0.05114572250841975,0.05114572250841975],\u0022marker\u0022:{},\u0022line\u0022:{},\u0022xaxis\u0022:\u0022x7\u0022,\u0022yaxis\u0022:\u0022y7\u0022}];\n var layout = {\u0022width\u0022:600,\u0022height\u0022:600,\u0022template\u0022:{\u0022layout\u0022:{\u0022title\u0022:{\u0022x\u0022:0.05},\u0022font\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022paper_bgcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022plot_bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022autotypenumbers\u0022:\u0022strict\u0022,\u0022colorscale\u0022:{\u0022diverging\u0022:[[0.0,\u0022#8e0152\u0022],[0.1,\u0022#c51b7d\u0022],[0.2,\u0022#de77ae\u0022],[0.3,\u0022#f1b6da\u0022],[0.4,\u0022#fde0ef\u0022],[0.5,\u0022#f7f7f7\u0022],[0.6,\u0022#e6f5d0\u0022],[0.7,\u0022#b8e186\u0022],[0.8,\u0022#7fbc41\u0022],[0.9,\u0022#4d9221\u0022],[1.0,\u0022#276419\u0022]],\u0022sequential\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]],\u0022sequentialminus\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]},\u0022hovermode\u0022:\u0022closest\u0022,\u0022hoverlabel\u0022:{\u0022align\u0022:\u0022left\u0022},\u0022coloraxis\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}},\u0022geo\u0022:{\u0022showland\u0022:true,\u0022landcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showlakes\u0022:true,\u0022lakecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022subunitcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022bgcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022mapbox\u0022:{\u0022style\u0022:\u0022light\u0022},\u0022polar\u0022:{\u0022bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022radialaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022ticks\u0022:\u0022\u0022},\u0022angularaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022ticks\u0022:\u0022\u0022}},\u0022scene\u0022:{\u0022xaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true},\u0022yaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true},\u0022zaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridwidth\u0022:2.0,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022backgroundcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022showbackground\u0022:true}},\u0022ternary\u0022:{\u0022aaxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022baxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022caxis\u0022:{\u0022ticks\u0022:\u0022\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022},\u0022bgcolor\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022},\u0022xaxis\u0022:{\u0022title\u0022:{\u0022standoff\u0022:15},\u0022ticks\u0022:\u0022\u0022,\u0022automargin\u0022:\u0022height\u002Bwidth\u002Bleft\u002Bright\u002Btop\u002Bbottom\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinewidth\u0022:2.0},\u0022yaxis\u0022:{\u0022title\u0022:{\u0022standoff\u0022:15},\u0022ticks\u0022:\u0022\u0022,\u0022automargin\u0022:\u0022height\u002Bwidth\u002Bleft\u002Bright\u002Btop\u002Bbottom\u0022,\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022zerolinewidth\u0022:2.0},\u0022annotationdefaults\u0022:{\u0022arrowcolor\u0022:\u0022#2a3f5f\u0022,\u0022arrowhead\u0022:0,\u0022arrowwidth\u0022:1},\u0022shapedefaults\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}},\u0022colorway\u0022:[\u0022rgba(99, 110, 250, 1.0)\u0022,\u0022rgba(239, 85, 59, 1.0)\u0022,\u0022rgba(0, 204, 150, 1.0)\u0022,\u0022rgba(171, 99, 250, 1.0)\u0022,\u0022rgba(255, 161, 90, 1.0)\u0022,\u0022rgba(25, 211, 243, 1.0)\u0022,\u0022rgba(255, 102, 146, 1.0)\u0022,\u0022rgba(182, 232, 128, 1.0)\u0022,\u0022rgba(255, 151, 255, 1.0)\u0022,\u0022rgba(254, 203, 82, 1.0)\u0022]},\u0022data\u0022:{\u0022bar\u0022:[{\u0022marker\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022width\u0022:0.5},\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}},\u0022error_x\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022error_y\u0022:{\u0022color\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}}],\u0022barpolar\u0022:[{\u0022marker\u0022:{\u0022line\u0022:{\u0022color\u0022:\u0022rgba(229, 236, 246, 1.0)\u0022,\u0022width\u0022:0.5},\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}}}],\u0022carpet\u0022:[{\u0022aaxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022endlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022,\u0022minorgridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022startlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022},\u0022baxis\u0022:{\u0022linecolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022gridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022endlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022,\u0022minorgridcolor\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022,\u0022startlinecolor\u0022:\u0022rgba(42, 63, 95, 1.0)\u0022}}],\u0022choropleth\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022contour\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022contourcarpet\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}],\u0022heatmap\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022heatmapgl\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022histogram\u0022:[{\u0022marker\u0022:{\u0022pattern\u0022:{\u0022fillmode\u0022:\u0022overlay\u0022,\u0022size\u0022:10,\u0022solidity\u0022:0.2}}}],\u0022histogram2d\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022histogram2dcontour\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022mesh3d\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}],\u0022parcoords\u0022:[{\u0022line\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022pie\u0022:[{\u0022automargin\u0022:true}],\u0022scatter\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatter3d\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}},\u0022line\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattercarpet\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattergeo\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattergl\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scattermapbox\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterpolar\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterpolargl\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022scatterternary\u0022:[{\u0022marker\u0022:{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022}}}],\u0022surface\u0022:[{\u0022colorbar\u0022:{\u0022outlinewidth\u0022:0.0,\u0022ticks\u0022:\u0022\u0022},\u0022colorscale\u0022:[[0.0,\u0022#0d0887\u0022],[0.1111111111111111,\u0022#46039f\u0022],[0.2222222222222222,\u0022#7201a8\u0022],[0.3333333333333333,\u0022#9c179e\u0022],[0.4444444444444444,\u0022#bd3786\u0022],[0.5555555555555556,\u0022#d8576b\u0022],[0.6666666666666666,\u0022#ed7953\u0022],[0.7777777777777778,\u0022#fb9f3a\u0022],[0.8888888888888888,\u0022#fdca26\u0022],[1.0,\u0022#f0f921\u0022]]}],\u0022table\u0022:[{\u0022cells\u0022:{\u0022fill\u0022:{\u0022color\u0022:\u0022rgba(235, 240, 248, 1.0)\u0022},\u0022line\u0022:{\u0022color\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022}},\u0022header\u0022:{\u0022fill\u0022:{\u0022color\u0022:\u0022rgba(200, 212, 227, 1.0)\u0022},\u0022line\u0022:{\u0022color\u0022:\u0022rgba(255, 255, 255, 1.0)\u0022}}}]}},\u0022xaxis\u0022:{},\u0022yaxis\u0022:{},\u0022xaxis2\u0022:{},\u0022yaxis2\u0022:{},\u0022xaxis3\u0022:{},\u0022yaxis3\u0022:{},\u0022xaxis4\u0022:{},\u0022yaxis4\u0022:{},\u0022xaxis5\u0022:{},\u0022yaxis5\u0022:{},\u0022xaxis6\u0022:{},\u0022yaxis6\u0022:{},\u0022xaxis7\u0022:{},\u0022yaxis7\u0022:{},\u0022grid\u0022:{\u0022rows\u0022:3,\u0022columns\u0022:3,\u0022pattern\u0022:\u0022independent\u0022}};\n var config = {\u0022responsive\u0022:true};\n Plotly.newPlot(\u0027e5bba716-ece5-4d6c-b54f-adc8b34720a4\u0027, data, layout, config);\n};\nrenderPlotly_e5bba716ece54d6cb54fadc8b34720a4();\n\n","headings":["Predator-Prey Dynamics: Snowshoe Hare and Lynx","Defining the ecological model","Does it all work? Testing the engine and model","Fitting to real data","Inspecting the model fit"],"type":"content"}] \ No newline at end of file diff --git a/integration.fsx b/integration.fsx new file mode 100644 index 0000000..0dfe918 --- /dev/null +++ b/integration.fsx @@ -0,0 +1,48 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Integration Methods + +Bristlecone supports model systems defined in discrete or continuous time. +For continuous-time model systems - defined as ordinary differential +equation(s) - Bristlecone applies numerical integration to calculate +changes in the modelled properties through time. + +**Note. Currently only fixed timesteps are supported, but variable timestep support +(e.g. for sediment core data) is planned for a future release.** + +### Included integration methods + +The following integration functions are included within the `Bristlecone.Integration` namespace: + +Solver | Function | Description +--- | --- | --- +Runge-Kutta 4 (MathNet Numerics) | `Integration.MathNet.integrate` | A fourth-order Runge Kutta method to provide approximate solutions to ODE systems. +Runge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research) | `Integration.MsftOslo.integrate` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf). + + +### Adding a custom integration method + +You can add a custom integration routine by wrapping your integration +function to match the `EstimationEngine.Integration` type signature as follows: + +*) +open Bristlecone + +let myCustomIntegrator : EstimationEngine.Integrate<'data,'time> = + fun writeOut tInitial tEnd tStep initialConditions externalEnvironment model -> + invalidOp "Doesn't actually do anything!" + +let engine = + Bristlecone.mkContinuous + |> Bristlecone.withContinuousTime myCustomIntegrator +(** +When defining a custom integration routine, you may wish to use the +`Base.solve` function from the `Bristlecone.Integration` namespace. +This is used to arrange the equations into a form suitable for a +simple integration routine. + +*) + diff --git a/integration.html b/integration.html new file mode 100644 index 0000000..58a29bc --- /dev/null +++ b/integration.html @@ -0,0 +1,406 @@ + + + + + + + + + + + + + + + + + + Integration | bristlecone + + + + + + + + + + + + +
                + +
                + + + + + +
                +
                + +
                +
                + +

                Integration Methods

                +

                Bristlecone supports model systems defined in discrete or continuous time. +For continuous-time model systems - defined as ordinary differential +equation(s) - Bristlecone applies numerical integration to calculate +changes in the modelled properties through time.

                +

                Note. Currently only fixed timesteps are supported, but variable timestep support +(e.g. for sediment core data) is planned for a future release.

                +

                Included integration methods

                +

                The following integration functions are included within the Bristlecone.Integration namespace:

                + + + + + + + + + + + + + + + + + + + + +

                Solver

                Function

                Description

                Runge-Kutta 4 (MathNet Numerics)

                Integration.MathNet.integrate

                A fourth-order Runge Kutta method to provide approximate solutions to ODE systems.

                Runge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research)

                Integration.MsftOslo.integrate

                A method based on classic Runge-Kutta, but with automatic error and step size control. See the documentation.

                + +

                Adding a custom integration method

                +

                You can add a custom integration routine by wrapping your integration +function to match the EstimationEngine.Integration type signature as follows:

                +
                open Bristlecone
                +
                +let myCustomIntegrator : EstimationEngine.Integrate<'data,'time> =
                +    fun writeOut tInitial tEnd tStep initialConditions externalEnvironment model ->
                +        invalidOp "Doesn't actually do anything!"
                +
                +let engine =
                +    Bristlecone.mkContinuous
                +    |> Bristlecone.withContinuousTime myCustomIntegrator
                +
                +

                When defining a custom integration routine, you may wish to use the +Base.solve function from the Bristlecone.Integration namespace. +This is used to arrange the equations into a form suitable for a +simple integration routine.

                + +
                Multiple items
                module Bristlecone + +from Bristlecone

                --------------------
                namespace Bristlecone
                +
                val myCustomIntegrator<'data,'time> : writeOut: EstimationEngine.WriteOut -> tInitial: 'time -> tEnd: 'time -> tStep: 'time -> initialConditions: CodedMap<'data> -> externalEnvironment: CodedMap<Time.TimeIndex.TimeIndex<'data>> -> model: CodedMap<EstimationEngine.ODE> -> CodedMap<'data array>
                +
                module EstimationEngine + +from Bristlecone
                +
                type Integrate<'data,'time> = EstimationEngine.WriteOut -> 'time -> 'time -> 'time -> CodedMap<'data> -> CodedMap<Time.TimeIndex.TimeIndex<'data>> -> CodedMap<EstimationEngine.ODE> -> CodedMap<'data array>
                +
                val writeOut: EstimationEngine.WriteOut
                +
                val tInitial: 'time
                +
                val tEnd: 'time
                +
                val tStep: 'time
                +
                val initialConditions: CodedMap<'data>
                +
                val externalEnvironment: CodedMap<Time.TimeIndex.TimeIndex<'data>>
                +
                val model: CodedMap<EstimationEngine.ODE>
                +
                val invalidOp: message: string -> 'T
                +
                val engine: EstimationEngine.EstimationEngine<float,float>
                +
                val mkContinuous: EstimationEngine.EstimationEngine<float,float>
                <summary> + A standard `EstimationEngine` for ordinary differential equation models. +</summary>
                +
                val withContinuousTime: t: EstimationEngine.Integrate<'a,'b> -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
                <summary> + Use a custom integration method +</summary>
                + +
                +
                + + + +
                +
                  +

                  Type something to start searching.

                  +
                  +
                  + + + + + + + \ No newline at end of file diff --git a/integration.ipynb b/integration.ipynb new file mode 100644 index 0000000..f6dc379 --- /dev/null +++ b/integration.ipynb @@ -0,0 +1,127 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Integration Methods\n", + "\n", + "Bristlecone supports model systems defined in discrete or continuous time.\n", + "For continuous-time model systems - defined as ordinary differential\n", + "equation(s) - Bristlecone applies numerical integration to calculate\n", + "changes in the modelled properties through time.\n", + "\n", + "**Note. Currently only fixed timesteps are supported, but variable timestep support\n", + "(e.g. for sediment core data) is planned for a future release.**\n", + "\n", + "### Included integration methods\n", + "\n", + "The following integration functions are included within the `Bristlecone.Integration` namespace:\n", + "\n", + "Solver | Function | Description\n", + "--- | --- | ---\n", + "Runge-Kutta 4 (MathNet Numerics) | `Integration.MathNet.integrate` | A fourth-order Runge Kutta method to provide approximate solutions to ODE systems.\n", + "Runge-Kutta 547M (Open Solving Library for ODEs - Microsoft Research) | `Integration.MsftOslo.integrate` | A method based on classic Runge-Kutta, but with automatic error and step size control. [See the documentation](https://www.microsoft.com/en-us/research/wp-content/uploads/2014/07/osloUserGuide.pdf).\n", + "\n", + "\n", + "### Adding a custom integration method\n", + "\n", + "You can add a custom integration routine by wrapping your integration\n", + "function to match the `EstimationEngine.Integration` type signature as follows:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone\n", + "\n", + "let myCustomIntegrator : EstimationEngine.Integrate\u003c\u0027data,\u0027time\u003e =\n", + " fun writeOut tInitial tEnd tStep initialConditions externalEnvironment model -\u003e\n", + " invalidOp \"Doesn\u0027t actually do anything!\"\n", + "\n", + "let engine =\n", + " Bristlecone.mkContinuous\n", + " |\u003e Bristlecone.withContinuousTime myCustomIntegrator\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "When defining a custom integration routine, you may wish to use the\n", + "`Base.solve` function from the `Bristlecone.Integration` namespace.\n", + "This is used to arrange the equations into a form suitable for a\n", + "simple integration routine.\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/language.fsx b/language.fsx new file mode 100644 index 0000000..af1c712 --- /dev/null +++ b/language.fsx @@ -0,0 +1,121 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# The Bristlecone Language: Writing Models + +Bristlecone includes a language for expressing mathematical models, and combining +these to form hypotheses for testing. You can use the language by opening it's +namespace: + +*) +open Bristlecone // Opens Bristlecone core library and estimation engine +open Bristlecone.Language // Open the language for writing Bristlecone models +(** +## Writing mathematical expressions + +In Bristlecone, mathematical expressions to be used within +a model may be written using simple terms. Consider the following +example of an ordinary differential equation of logistic growth: + +*) +let dNdt = Parameter "r" * This * (Constant 1. - (This / Parameter "K")) +(** +Here, we have used the following model expressions: + +* `This` - the subject of the equation, which in this +case is **N**, the population size. + + +* `Parameter` - an estimatable parameter followed by its name. Here, we have +defined two parameters: + + + * `Paramater "r"` - the intrinsic growth rate of the population; + + + * `Parameter "K"` - the **carrying capacity** of the population. + + + +* `Constant` - a fixed parameter or constant value within an equation. + + +You can use all standard mathematical operators `* / + - % **` to build your model. +There are additional model expressions that may be used to build up more complex +expressions (which are defined in the `ModelExpression` discriminated union). + +## Additional model expressions + +### Time-varying parameters + +Often, a time-series model needs to take account of environmental +variability. For example, changes in temperature and precipitation +may influence the growth rate of a plant over time. Bristlecone supports +time-varying parameters in equations using the form: + +*) +Environment "T[min]" +(** +Here, we have defined the minimum temperature (**T[min]()**) as a time-varying (or environment) parameter. +Unlike `Paramater` items, **T[min]()** will not be estimated during model-fitting, but +will be read from the environmental properties for the appropriate time interval. + +### Conditional + +You can define a conditional model fragment by using the +`Conditional` term. A `Conditional` model expression takes a function +with one argument - a function that represents the future +computation of the model expression (`compute` - +with signature `ModelExpression -> float`). Within this function, +you can then evaluate the answer of any model expressions +by passing them as the argument to the `compute` function. +Please see the below example: + +*) +let linear = + Conditional(fun compute -> + if compute (Parameter "a" * Constant 5.) < 1e-12 + then Invalid + else Parameter "a" * This) +(** +In this example, the function is limited such that +the combination of parameter value **a** with a theoretical +value of **This** at 5.0 cannot result in an answer that is +less than 1e-12. If this is the case, the result of the +model is `Invalid`. + +### Invalid + +The `Invalid` keyword is useful in combination with the +`Conditional` keyword, as demonstrated above. When any model expression +returns `Invalid`, the model fails. During optimisation, this is useful +to constrain the search within parameter space to values that do not +tend to infinity, or where values may be theoretically implausable. + +### Arbitrary + +Sometimes, a complex sub-model may need to be inserted where you +do not wish to rewrite it into the Bristlecone language. You may also +not have access to the original source, or be calling from an external +library. In these cases, you can use the `Arbitrary` model expression +to wrap the function for Bristlecone. Helper functions are included +to simplify this process within the `Arbitrary` module: + +*) +/// x: population size +/// t: current time +/// z: some environmental value +let someArbitraryFn x t z = + x + t * 1.0 - z + +// TODO Insert example here +(** +### Time + +The `Time` keyword simply retrives the current time index; as such, it +can be used to formulate time-dependent models. + +*) + diff --git a/language.html b/language.html new file mode 100644 index 0000000..f9a02a1 --- /dev/null +++ b/language.html @@ -0,0 +1,471 @@ + + + + + + + + + + + + + + + + + + Writing Models | bristlecone + + + + + + + + + + + + +
                  + +
                  + + + + + +
                  +
                  + +
                  +
                  + +

                  The Bristlecone Language: Writing Models

                  +

                  Bristlecone includes a language for expressing mathematical models, and combining +these to form hypotheses for testing. You can use the language by opening it's +namespace:

                  +
                  open Bristlecone            // Opens Bristlecone core library and estimation engine
                  +open Bristlecone.Language   // Open the language for writing Bristlecone models
                  +
                  +

                  Writing mathematical expressions

                  +

                  In Bristlecone, mathematical expressions to be used within +a model may be written using simple terms. Consider the following +example of an ordinary differential equation of logistic growth:

                  +
                  let dNdt = Parameter "r" * This * (Constant 1. - (This / Parameter "K"))
                  +
                  +

                  Here, we have used the following model expressions:

                  +
                    +
                  • +

                    This - the subject of the equation, which in this +case is N, the population size.

                    +
                  • +
                  • +

                    Parameter - an estimatable parameter followed by its name. Here, we have +defined two parameters:

                    +
                      +
                    • Paramater "r" - the intrinsic growth rate of the population;

                    • +
                    • Parameter "K" - the carrying capacity of the population.

                    • +
                    +
                  • +
                  • Constant - a fixed parameter or constant value within an equation.

                  • +
                  +

                  You can use all standard mathematical operators * / + - % ** to build your model. +There are additional model expressions that may be used to build up more complex +expressions (which are defined in the ModelExpression discriminated union).

                  +

                  Additional model expressions

                  +

                  Time-varying parameters

                  +

                  Often, a time-series model needs to take account of environmental +variability. For example, changes in temperature and precipitation +may influence the growth rate of a plant over time. Bristlecone supports +time-varying parameters in equations using the form:

                  +
                  Environment "T[min]"
                  +
                  +

                  Here, we have defined the minimum temperature (T[min]) as a time-varying (or environment) parameter. +Unlike Paramater items, T[min] will not be estimated during model-fitting, but +will be read from the environmental properties for the appropriate time interval.

                  +

                  Conditional

                  +

                  You can define a conditional model fragment by using the +Conditional term. A Conditional model expression takes a function +with one argument - a function that represents the future +computation of the model expression (compute - +with signature ModelExpression -> float). Within this function, +you can then evaluate the answer of any model expressions +by passing them as the argument to the compute function. +Please see the below example:

                  +
                  let linear =
                  +    Conditional(fun compute ->
                  +        if compute (Parameter "a" * Constant 5.) < 1e-12 
                  +        then Invalid 
                  +        else Parameter "a" * This)
                  +
                  +

                  In this example, the function is limited such that +the combination of parameter value a with a theoretical +value of This at 5.0 cannot result in an answer that is +less than 1e-12. If this is the case, the result of the +model is Invalid.

                  +

                  Invalid

                  +

                  The Invalid keyword is useful in combination with the +Conditional keyword, as demonstrated above. When any model expression +returns Invalid, the model fails. During optimisation, this is useful +to constrain the search within parameter space to values that do not +tend to infinity, or where values may be theoretically implausable.

                  +

                  Arbitrary

                  +

                  Sometimes, a complex sub-model may need to be inserted where you +do not wish to rewrite it into the Bristlecone language. You may also +not have access to the original source, or be calling from an external +library. In these cases, you can use the Arbitrary model expression +to wrap the function for Bristlecone. Helper functions are included +to simplify this process within the Arbitrary module:

                  +
                  /// x: population size
                  +/// t: current time
                  +/// z: some environmental value
                  +let someArbitraryFn x t z =
                  +    x + t * 1.0 - z
                  +
                  +// TODO Insert example here
                  +
                  +

                  Time

                  +

                  The Time keyword simply retrives the current time index; as such, it +can be used to formulate time-dependent models.

                  + +
                  Multiple items
                  module Bristlecone + +from Bristlecone

                  --------------------
                  namespace Bristlecone
                  +
                  module Language + +from Bristlecone
                  <summary> + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +</summary>
                  +
                  val dNdt: ModelExpression
                  +
                  Multiple items
                  union case ModelExpression.Parameter: string -> ModelExpression

                  --------------------
                  module Parameter + +from Bristlecone
                  +
                  union case ModelExpression.This: ModelExpression
                  +
                  union case ModelExpression.Constant: float -> ModelExpression
                  +
                  union case ModelExpression.Environment: string -> ModelExpression
                  +
                  val linear: ModelExpression
                  +
                  union case ModelExpression.Conditional: ((ModelExpression -> float) -> ModelExpression) -> ModelExpression
                  +
                  val compute: (ModelExpression -> float)
                  +
                  union case ModelExpression.Invalid: ModelExpression
                  +
                  val someArbitraryFn: x: float -> t: float -> z: float -> float
                   x: population size
                   t: current time
                   z: some environmental value
                  +
                  val x: float
                  +
                  val t: float
                  +
                  val z: float
                  + +
                  +
                  + + + +
                  +
                    +

                    Type something to start searching.

                    +
                    +
                    + + + + + + + \ No newline at end of file diff --git a/language.ipynb b/language.ipynb new file mode 100644 index 0000000..e806b9d --- /dev/null +++ b/language.ipynb @@ -0,0 +1,284 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# The Bristlecone Language: Writing Models\n", + "\n", + "Bristlecone includes a language for expressing mathematical models, and combining\n", + "these to form hypotheses for testing. You can use the language by opening it\u0027s\n", + "namespace:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone // Opens Bristlecone core library and estimation engine\n", + "open Bristlecone.Language // Open the language for writing Bristlecone models\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "## Writing mathematical expressions\n", + "\n", + "In Bristlecone, mathematical expressions to be used within\n", + "a model may be written using simple terms. Consider the following\n", + "example of an ordinary differential equation of logistic growth:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "let dNdt = Parameter \"r\" * This * (Constant 1. - (This / Parameter \"K\"))\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "Here, we have used the following model expressions:\n", + "\n", + "* `This` - the subject of the equation, which in this\n", + "case is **N**, the population size.\n", + " \n", + "\n", + "* `Parameter` - an estimatable parameter followed by its name. Here, we have\n", + "defined two parameters:\n", + " \n", + "\n", + " * `Paramater \"r\"` - the intrinsic growth rate of the population;\n", + " \n", + " \n", + " * `Parameter \"K\"` - the **carrying capacity** of the population.\n", + " \n", + " \n", + "\n", + "* `Constant` - a fixed parameter or constant value within an equation.\n", + " \n", + "\n", + "You can use all standard mathematical operators `* / + - % **` to build your model.\n", + "There are additional model expressions that may be used to build up more complex\n", + "expressions (which are defined in the `ModelExpression` discriminated union).\n", + "\n", + "## Additional model expressions\n", + "\n", + "### Time-varying parameters\n", + "\n", + "Often, a time-series model needs to take account of environmental\n", + "variability. For example, changes in temperature and precipitation\n", + "may influence the growth rate of a plant over time. Bristlecone supports\n", + "time-varying parameters in equations using the form:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 4, "outputs": [], + "source": [ + "Environment \"T[min]\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "Here, we have defined the minimum temperature (**T[min]()**) as a time-varying (or environment) parameter.\n", + "Unlike `Paramater` items, **T[min]()** will not be estimated during model-fitting, but\n", + "will be read from the environmental properties for the appropriate time interval.\n", + "\n", + "### Conditional\n", + "\n", + "You can define a conditional model fragment by using the\n", + "`Conditional` term. A `Conditional` model expression takes a function\n", + "with one argument - a function that represents the future\n", + "computation of the model expression (`compute` -\n", + "with signature `ModelExpression -\u003e float`). Within this function,\n", + "you can then evaluate the answer of any model expressions\n", + "by passing them as the argument to the `compute` function.\n", + "Please see the below example:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 5, "outputs": [], + "source": [ + "let linear =\n", + " Conditional(fun compute -\u003e\n", + " if compute (Parameter \"a\" * Constant 5.) \u003c 1e-12 \n", + " then Invalid \n", + " else Parameter \"a\" * This)\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "In this example, the function is limited such that\n", + "the combination of parameter value **a** with a theoretical\n", + "value of **This** at 5.0 cannot result in an answer that is\n", + "less than 1e-12. If this is the case, the result of the\n", + "model is `Invalid`.\n", + "\n", + "### Invalid\n", + "\n", + "The `Invalid` keyword is useful in combination with the\n", + "`Conditional` keyword, as demonstrated above. When any model expression\n", + "returns `Invalid`, the model fails. During optimisation, this is useful\n", + "to constrain the search within parameter space to values that do not\n", + "tend to infinity, or where values may be theoretically implausable.\n", + "\n", + "### Arbitrary\n", + "\n", + "Sometimes, a complex sub-model may need to be inserted where you\n", + "do not wish to rewrite it into the Bristlecone language. You may also\n", + "not have access to the original source, or be calling from an external\n", + "library. In these cases, you can use the `Arbitrary` model expression\n", + "to wrap the function for Bristlecone. Helper functions are included\n", + "to simplify this process within the `Arbitrary` module:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 6, "outputs": [], + "source": [ + "/// x: population size\n", + "/// t: current time\n", + "/// z: some environmental value\n", + "let someArbitraryFn x t z =\n", + " x + t * 1.0 - z\n", + "\n", + "// TODO Insert example here\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Time\n", + "\n", + "The `Time` keyword simply retrives the current time index; as such, it\n", + "can be used to formulate time-dependent models.\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/logging.fsx b/logging.fsx new file mode 100644 index 0000000..211c483 --- /dev/null +++ b/logging.fsx @@ -0,0 +1,11 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Logging in Bristlecone + +Forthcoming + +*) + diff --git a/logging.html b/logging.html new file mode 100644 index 0000000..76b1c59 --- /dev/null +++ b/logging.html @@ -0,0 +1,327 @@ + + + + + + + + + + + + + + + + + + Logging | bristlecone + + + + + + + + + + + + +
                    + +
                    + + + + + +
                    +
                    + +
                    +
                    + +

                    Logging in Bristlecone

                    +

                    Forthcoming

                    + + +
                    +
                    + + + +
                    +
                      +

                      Type something to start searching.

                      +
                      +
                      + + + + + + + \ No newline at end of file diff --git a/logging.ipynb b/logging.ipynb new file mode 100644 index 0000000..1fade59 --- /dev/null +++ b/logging.ipynb @@ -0,0 +1,69 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Logging in Bristlecone\n", + "\n", + "Forthcoming\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/model-fitting.fsx b/model-fitting.fsx new file mode 100644 index 0000000..13a7124 --- /dev/null +++ b/model-fitting.fsx @@ -0,0 +1,9 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Model Fitting + +*) + diff --git a/model-fitting.html b/model-fitting.html new file mode 100644 index 0000000..159c557 --- /dev/null +++ b/model-fitting.html @@ -0,0 +1,326 @@ + + + + + + + + + + + + + + + + + + Model Fitting | bristlecone + + + + + + + + + + + + +
                      + +
                      + + + + + +
                      +
                      + +
                      +
                      + +

                      Model Fitting

                      + + +
                      +
                      + + + +
                      +
                        +

                        Type something to start searching.

                        +
                        +
                        + + + + + + + \ No newline at end of file diff --git a/model-fitting.ipynb b/model-fitting.ipynb new file mode 100644 index 0000000..91c98a2 --- /dev/null +++ b/model-fitting.ipynb @@ -0,0 +1,67 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Model Fitting\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/model-selection.fsx b/model-selection.fsx new file mode 100644 index 0000000..9eb9211 --- /dev/null +++ b/model-selection.fsx @@ -0,0 +1,34 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Model Selection + +Through **Model Selection**, alternative model hypothesis results are +competed to determine which hypothesis is best explained by the underlying +data. Before conducting model selection, you should be familiar with the benefits +and limitations of alternative model selection statistics. + +### Akaike Weights + +To calculate Akaike weights for a set of hypotheses, you must first obtain +your results by either loading in saved result files, or running models directly. +Once you have obtained your results, weights can be saved after calculation +by using the functions within the `Bristlecone.Data` namespace as below: + +*) +open Bristlecone + +fun results -> + + let resultsDirectory = "some/results/directory/" + + let weights = + results + |> ModelSelection.weights + + // Save the weights into a csv file + weights + |> Data.ModelSelection.save resultsDirectory + diff --git a/model-selection.html b/model-selection.html new file mode 100644 index 0000000..cd2d4bf --- /dev/null +++ b/model-selection.html @@ -0,0 +1,369 @@ + + + + + + + + + + + + + + + + + + Model Selection | bristlecone + + + + + + + + + + + + +
                        + +
                        + + + + + +
                        +
                        + +
                        +
                        + +

                        Model Selection

                        +

                        Through Model Selection, alternative model hypothesis results are +competed to determine which hypothesis is best explained by the underlying +data. Before conducting model selection, you should be familiar with the benefits +and limitations of alternative model selection statistics.

                        +

                        Akaike Weights

                        +

                        To calculate Akaike weights for a set of hypotheses, you must first obtain +your results by either loading in saved result files, or running models directly. +Once you have obtained your results, weights can be saved after calculation +by using the functions within the Bristlecone.Data namespace as below:

                        +
                        open Bristlecone
                        +
                        +fun results ->
                        +
                        +    let resultsDirectory = "some/results/directory/"
                        +
                        +    let weights =
                        +        results
                        +        |> ModelSelection.weights
                        +
                        +    // Save the weights into a csv file
                        +    weights
                        +    |> Data.ModelSelection.save resultsDirectory
                        +
                        + +
                        Multiple items
                        module Bristlecone + +from Bristlecone

                        --------------------
                        namespace Bristlecone
                        +
                        val results: ModelSelection.ResultSet.ResultSet<string,'a> seq
                        +
                        val resultsDirectory: string
                        +
                        val weights: (string * string * ModelSystem.EstimationResult * ModelSelection.Akaike.AkaikeWeight) list
                        +
                        module ModelSelection + +from Bristlecone
                        +
                        val weights: results: ModelSelection.ResultSet.ResultSet<'a,'b> seq -> ('a * string * ModelSystem.EstimationResult * ModelSelection.Akaike.AkaikeWeight) list (requires equality)
                        +
                        Multiple items
                        namespace Bristlecone.Data

                        --------------------
                        namespace Microsoft.FSharp.Data
                        +
                        module ModelSelection + +from Bristlecone.Data
                        +
                        val save: directory: string -> result: (string * string * ModelSystem.EstimationResult * ModelSelection.Akaike.AkaikeWeight) seq -> unit
                        + +
                        +
                        + + + +
                        +
                          +

                          Type something to start searching.

                          +
                          +
                          + + + + + + + \ No newline at end of file diff --git a/model-selection.ipynb b/model-selection.ipynb new file mode 100644 index 0000000..fbd8a9b --- /dev/null +++ b/model-selection.ipynb @@ -0,0 +1,107 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Model Selection\n", + "\n", + "Through **Model Selection**, alternative model hypothesis results are\n", + "competed to determine which hypothesis is best explained by the underlying\n", + "data. Before conducting model selection, you should be familiar with the benefits\n", + "and limitations of alternative model selection statistics.\n", + "\n", + "### Akaike Weights\n", + "\n", + "To calculate Akaike weights for a set of hypotheses, you must first obtain\n", + "your results by either loading in saved result files, or running models directly.\n", + "Once you have obtained your results, weights can be saved after calculation\n", + "by using the functions within the `Bristlecone.Data` namespace as below:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone\n", + "\n", + "fun results -\u003e\n", + "\n", + " let resultsDirectory = \"some/results/directory/\"\n", + "\n", + " let weights =\n", + " results\n", + " |\u003e ModelSelection.weights\n", + "\n", + " // Save the weights into a csv file\n", + " weights\n", + " |\u003e Data.ModelSelection.save resultsDirectory\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/model.fsx b/model.fsx new file mode 100644 index 0000000..3b6bfd7 --- /dev/null +++ b/model.fsx @@ -0,0 +1,93 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Defining a Hypothesis (or Model System) + +In Bristlecone, a `ModelSystem` represents combination +of mathematical models and their estimatable parameters +that can be used within model-fitting and model-selection. +A `ModelSystem` is defined by: + +* at least one equation; + +* at least one parameter to estimate; + +* a likelihood function; and + +* optionally, measurement equations. + +To build a `ModelSystem`, first open the Bristlecone language: + +*) +open Bristlecone // Opens Bristlecone core library and estimation engine +open Bristlecone.Language // Open the language for writing Bristlecone models +(** +Second, define the parts of your hypothesis. In this example, +we will define a simple model of population growth: + +**Note: refer to the section on [writing models](language.html) for help writing +Bristlecone expressions.** + +*) +let ``dN/dt`` = Parameter "r" * This * (Constant 1. - (This / Parameter "K")) +(** +From the above code, our model is compiled into the following internal representation: + +``` +Multiply + [Multiply [Parameter "r"; This]; + Subtract (Constant 1.0, Divide (This, Parameter "K"))] +``` + +Our model of the change in **N** (population count) over time has two estimatable parameters defined using the `Parameter` term, +which are **r** (the intrinsic growth rate of the population) +and **K** (the carrying capacity of the population). + +Next, we need to create our `ModelSystem` by using the helper functions +that can be found under `Model.*`. + +In this example, we will use a sum-of-squares measure to determine +the goodness-of-fit rather than a likelihood function. A selection of +likelihood functions, including sum-of-squares functions, are included +in Bristlecone within the `ModelLibrary` module. + +The `ModelSystem` can be created with forward pipes (`|>`) as follows: + +*) +let hypothesis = + Model.empty + |> Model.addEquation "N" ``dN/dt`` + |> Model.estimateParameter "r" noConstraints 0.10 5.00 + |> Model.estimateParameter "K" noConstraints 50.0 150. + |> Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ "N" ]) + |> Model.compile +(** +In the above code, we first start with an empty model system, +`Model.empty`. We then add each component with a short code to +represent it, and finally call `Model.compile`. The `Model.compile` +function checks the validity of the model in terms of duplicate short codes, +making sure all parameters are set to be estimated, and that all the +required parts are in place. + +Let's look at defining the estimatable parameters in more detail: + +*) +Model.estimateParameter "r" noConstraints 0.10 5.00 +(** +For the `Model.estimateParameter` function, first pass +the short code as you have used it in your above model expressions. +Next, you must pass the constraint mode. In Bristlecone, although +the optimisation algorithms are **unconstrained**, it is possible +to constrain parameters to specific values using transformations. These +are applied automatically within the model-fitting process. Two available +options are `noConstaints`, which is unconstrained, and `positiveOnly`, which +prevents the value of that parameter dropping below zero. The last +arguments are two numbers representing a lower and upper bound +from which to draw an initial starting value for the parameter. +The starting value is drawn from a continuous uniform distribution, +using a `Random` that you define in the `EstimationEngine` (see [estimating](estimation-engine.html)). + +*) + diff --git a/model.html b/model.html new file mode 100644 index 0000000..dbf6d7b --- /dev/null +++ b/model.html @@ -0,0 +1,423 @@ + + + + + + + + + + + + + + + + + + Defining a Hypothesis (or Model System) | bristlecone + + + + + + + + + + + + +
                          + +
                          + + + + + +
                          +
                          + +
                          +
                          + +

                          Defining a Hypothesis (or Model System)

                          +

                          In Bristlecone, a ModelSystem represents combination +of mathematical models and their estimatable parameters +that can be used within model-fitting and model-selection. +A ModelSystem is defined by:

                          +
                            +
                          • at least one equation;
                          • +
                          • at least one parameter to estimate;
                          • +
                          • a likelihood function; and
                          • +
                          • optionally, measurement equations.
                          • +
                          +

                          To build a ModelSystem, first open the Bristlecone language:

                          +
                          open Bristlecone            // Opens Bristlecone core library and estimation engine
                          +open Bristlecone.Language   // Open the language for writing Bristlecone models
                          +
                          +

                          Second, define the parts of your hypothesis. In this example, +we will define a simple model of population growth:

                          +

                          Note: refer to the section on writing models for help writing +Bristlecone expressions.

                          +
                          let ``dN/dt`` = Parameter "r" * This * (Constant 1. - (This / Parameter "K"))
                          +
                          +

                          From the above code, our model is compiled into the following internal representation:

                          +
                          Multiply
                          +  [Multiply [Parameter "r"; This];
                          +   Subtract (Constant 1.0, Divide (This, Parameter "K"))]
                          +

                          Our model of the change in N (population count) over time has two estimatable parameters defined using the Parameter term, +which are r (the intrinsic growth rate of the population) +and K (the carrying capacity of the population).

                          +

                          Next, we need to create our ModelSystem by using the helper functions +that can be found under Model.*.

                          +

                          In this example, we will use a sum-of-squares measure to determine +the goodness-of-fit rather than a likelihood function. A selection of +likelihood functions, including sum-of-squares functions, are included +in Bristlecone within the ModelLibrary module.

                          +

                          The ModelSystem can be created with forward pipes (|>) as follows:

                          +
                          let hypothesis =
                          +    Model.empty
                          +    |> Model.addEquation       "N"      ``dN/dt``
                          +    |> Model.estimateParameter "r"      noConstraints 0.10 5.00 
                          +    |> Model.estimateParameter "K"      noConstraints 50.0 150.
                          +    |> Model.useLikelihoodFunction      (ModelLibrary.Likelihood.sumOfSquares [ "N" ])
                          +    |> Model.compile
                          +
                          +

                          In the above code, we first start with an empty model system, +Model.empty. We then add each component with a short code to +represent it, and finally call Model.compile. The Model.compile +function checks the validity of the model in terms of duplicate short codes, +making sure all parameters are set to be estimated, and that all the +required parts are in place.

                          +

                          Let's look at defining the estimatable parameters in more detail:

                          +
                          Model.estimateParameter "r"      noConstraints 0.10 5.00
                          +
                          +

                          For the Model.estimateParameter function, first pass +the short code as you have used it in your above model expressions. +Next, you must pass the constraint mode. In Bristlecone, although +the optimisation algorithms are unconstrained, it is possible +to constrain parameters to specific values using transformations. These +are applied automatically within the model-fitting process. Two available +options are noConstaints, which is unconstrained, and positiveOnly, which +prevents the value of that parameter dropping below zero. The last +arguments are two numbers representing a lower and upper bound +from which to draw an initial starting value for the parameter. +The starting value is drawn from a continuous uniform distribution, +using a Random that you define in the EstimationEngine (see estimating).

                          + +
                          Multiple items
                          module Bristlecone + +from Bristlecone

                          --------------------
                          namespace Bristlecone
                          +
                          module Language + +from Bristlecone
                          <summary> + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +</summary>
                          +
                          Multiple items
                          union case ModelExpression.Parameter: string -> ModelExpression

                          --------------------
                          module Parameter + +from Bristlecone
                          +
                          union case ModelExpression.This: ModelExpression
                          +
                          union case ModelExpression.Constant: float -> ModelExpression
                          +
                          val hypothesis: ModelSystem.ModelSystem
                          +
                          module Model + +from Bristlecone.Language
                          <summary> + Terms for scaffolding a model system for use with Bristlecone. +</summary>
                          +
                          val empty: ModelBuilder.ModelBuilder
                          +
                          val addEquation: name: string -> eq: ModelExpression -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
                          +
                          val estimateParameter: name: string -> constraintMode: Parameter.Constraint -> lower: float -> upper: float -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
                          +
                          val noConstraints: Parameter.Constraint
                          +
                          val useLikelihoodFunction: likelihoodFn: ModelSystem.LikelihoodFn -> builder: ModelBuilder.ModelBuilder -> ModelBuilder.ModelBuilder
                          +
                          namespace Bristlecone.ModelLibrary
                          +
                          module Likelihood + +from Bristlecone.ModelLibrary
                          <summary>Likelihood functions to represent a variety of distributions and data types.</summary>
                          <namespacedoc><summary>Pre-built model parts for use in Bristlecone</summary></namespacedoc>
                          +
                          val sumOfSquares: keys: string list -> ModelSystem.ParameterValueAccessor -> data: CodedMap<ModelSystem.PredictedSeries> -> float
                          <summary> + Residual sum of squares. Provides a simple metric of distance between + observed data and model predictions. +</summary>
                          +
                          val compile: (ModelBuilder.ModelBuilder -> ModelSystem.ModelSystem)
                          + +
                          +
                          + + + +
                          +
                            +

                            Type something to start searching.

                            +
                            +
                            + + + + + + + \ No newline at end of file diff --git a/model.ipynb b/model.ipynb new file mode 100644 index 0000000..04538aa --- /dev/null +++ b/model.ipynb @@ -0,0 +1,235 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Defining a Hypothesis (or Model System)\n", + "\n", + "In Bristlecone, a `ModelSystem` represents combination\n", + "of mathematical models and their estimatable parameters\n", + "that can be used within model-fitting and model-selection.\n", + "A `ModelSystem` is defined by:\n", + "\n", + "* at least one equation;\n", + "\n", + "* at least one parameter to estimate;\n", + "\n", + "* a likelihood function; and\n", + "\n", + "* optionally, measurement equations.\n", + "\n", + "To build a `ModelSystem`, first open the Bristlecone language:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone // Opens Bristlecone core library and estimation engine\n", + "open Bristlecone.Language // Open the language for writing Bristlecone models\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "Second, define the parts of your hypothesis. In this example,\n", + "we will define a simple model of population growth:\n", + "\n", + "**Note: refer to the section on [writing models](language.html) for help writing\n", + "Bristlecone expressions.**\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "let ``dN/dt`` = Parameter \"r\" * This * (Constant 1. - (This / Parameter \"K\"))\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "From the above code, our model is compiled into the following internal representation:\n", + "\n", + "```\n", + "Multiply\n", + " [Multiply [Parameter \"r\"; This];\n", + " Subtract (Constant 1.0, Divide (This, Parameter \"K\"))]\n", + "```\n", + "\n", + "Our model of the change in **N** (population count) over time has two estimatable parameters defined using the `Parameter` term,\n", + "which are **r** (the intrinsic growth rate of the population)\n", + "and **K** (the carrying capacity of the population).\n", + "\n", + "Next, we need to create our `ModelSystem` by using the helper functions\n", + "that can be found under `Model.*`.\n", + "\n", + "In this example, we will use a sum-of-squares measure to determine\n", + "the goodness-of-fit rather than a likelihood function. A selection of\n", + "likelihood functions, including sum-of-squares functions, are included\n", + "in Bristlecone within the `ModelLibrary` module.\n", + "\n", + "The `ModelSystem` can be created with forward pipes (`|\u003e`) as follows:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 5, "outputs": [], + "source": [ + "let hypothesis =\n", + " Model.empty\n", + " |\u003e Model.addEquation \"N\" ``dN/dt``\n", + " |\u003e Model.estimateParameter \"r\" noConstraints 0.10 5.00 \n", + " |\u003e Model.estimateParameter \"K\" noConstraints 50.0 150.\n", + " |\u003e Model.useLikelihoodFunction (ModelLibrary.Likelihood.sumOfSquares [ \"N\" ])\n", + " |\u003e Model.compile\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "In the above code, we first start with an empty model system,\n", + "`Model.empty`. We then add each component with a short code to\n", + "represent it, and finally call `Model.compile`. The `Model.compile`\n", + "function checks the validity of the model in terms of duplicate short codes,\n", + "making sure all parameters are set to be estimated, and that all the\n", + "required parts are in place.\n", + "\n", + "Let\u0027s look at defining the estimatable parameters in more detail:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 6, "outputs": [], + "source": [ + "Model.estimateParameter \"r\" noConstraints 0.10 5.00\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "For the `Model.estimateParameter` function, first pass\n", + "the short code as you have used it in your above model expressions.\n", + "Next, you must pass the constraint mode. In Bristlecone, although\n", + "the optimisation algorithms are **unconstrained**, it is possible\n", + "to constrain parameters to specific values using transformations. These\n", + "are applied automatically within the model-fitting process. Two available\n", + "options are `noConstaints`, which is unconstrained, and `positiveOnly`, which\n", + "prevents the value of that parameter dropping below zero. The last\n", + "arguments are two numbers representing a lower and upper bound\n", + "from which to draw an initial starting value for the parameter.\n", + "The starting value is drawn from a continuous uniform distribution,\n", + "using a `Random` that you define in the `EstimationEngine` (see [estimating](estimation-engine.html)).\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/optimisation.fsx b/optimisation.fsx new file mode 100644 index 0000000..57f6328 --- /dev/null +++ b/optimisation.fsx @@ -0,0 +1,188 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Optimisation Methods + +Bristlecone includes a suite of in-built local and global +optimisation methods. You can also use a custom optimisation +method defined in another library, or combine these with the +in-built optimisation techniques. + +## Defining a custom optimisation method + +A custom optimisation +procedure can be used with Bristlecone by plugging in as follows: + +*) +open Bristlecone + +let myCustomOptimiser : EstimationEngine.Optimiser = + EstimationEngine.InDetachedSpace <| + fun writeOut n domain f -> invalidOp "Doesn't actually do anything!" + +let engine = + Bristlecone.mkContinuous + |> Bristlecone.withCustomOptimisation myCustomOptimiser +(** +## Included optimisation methods + +The library itself includes Monte Carlo-based methods, and Amoeba (Nelder Mead Simplex) methods. +All methods are included in this namespace: + +*) +open Bristlecone.Optimisation +(** +### Simulated Annealing (SA) + +Simulated annealing models a minimisation problem in terms of particle +entropy, where the function value is analogous to energy. At high +temperatures, particles are in a high-energy state, thus can move +readily. As temperature gradually decreases, particles are less able +to move to high energy states, with particles eventually arranging +into the ‘ground state’ of a solid material. + +The SA implementation in Bristlecone includes classical SA that uses +a Boltzmann machine for jumps, and fast simulated annealing (FSA) that +uses a Cauchy distribution for jumps: + +*) +let settings = MonteCarlo.SimulatedAnnealing.AnnealSettings.Default + +// Classical Simulated Annealing: +MonteCarlo.SimulatedAnnealing.classicalSimulatedAnnealing 0.01 false settings + +// Fast Simulated Annealing: +MonteCarlo.SimulatedAnnealing.fastSimulatedAnnealing 0.01 false settings +(** +The FSA approach enables greater exploration of more distant portions of +parameter space more quickly and is therefore less prone to local minima +problems. + +For the SA implementation in Bristlecone, you must specify whether you +wish to use a temperature-dependent or temperature-independent proposal. +When temperature-dependent, the jump size increases at higher temperatures, +allowing coarser exploration of the parameter space initially, progressively +becoming more refined as the system cools. + +### Nelder-Mead Methods + +The Nelder-Mead simplex (or amoeba method) expands and contracts an n-dimensional +geometry within an unconstrained parameter space, following a +‘downhill’ gradient. The implementation here draws a random point from a +normal distribution, informed by the starting bounds for each parameter. + +The Nelder-Mead simplex is most appropriate for simpler likelihood surfaces. +It can be used as follows: + +*) +let settingsNM = Amoeba.Solver.Default(* output: +{ Alpha = 1.0 + Sigma = 0.5 + Gamma = 2.0 + Rho = -0.5 + Size = 3 }*) +let single : EstimationEngine.Optimise = + Amoeba.Solver.solve settingsNM +(** +A single Nelder-Mead solver is highly subject to local minima. To reduce +the prevalence of local minima, Bristlecone includes a **swarm** implementation +of the Nelder-Mead simplex, which, creates an ensemble of 20 amoeba, all of which +crawl the likelihood surface. After n iterations, all amoeba that have values +above the 80th percentile of the negative log likelihood values are +discarded. The procedure continues for five levels. The swarm mode +can be used from: + +*) +let levels = 5 +let individuals = 20 + +Amoeba.swarm levels individuals settingsNM +(** +### Monte Carlo methods + +Monte Carlo Markov Chain (MCMC) methods are most often applied in Bayesian +analyses, but can also be used for optimisation to identify the -log likelihood. +Within Bristlecone, a number of variations of Monte Carlo methods are included. + +Often, it is appropriate to use multiple methods in combination; initially, tuning +algorithm(s) are used to enhance the performance of the search. Once the tuning phase +is complete, a search is conducted to identify the minimum; finally, a sampling algorithm +may be run to explore the distribution around the minimum. + +#### Random Walk Metropolis Hastings + +The random walk algorithm may optionally be passed a list of `TuningStep`s, +which will be run before the final random walk. + +*) +// Random walk with no tuning steps +MonteCarlo.randomWalk [] + +// Random walk with 50,000 iterations of tuning, during +// which the individual parameter jump sizes are scaled +// every 500 iterations. +[ MonteCarlo.TuneMethod.Scale, 500, EndConditions.afterIteration 50000 ] +|> MonteCarlo.randomWalk +(** +#### Adaptive Metropolis (AM) + +The AM algorithm continuously tunes the covariance structure of the +jump distribution based on the size of jumps in the recently-explored +parameter space. + +*) +let weighting = 0.250 // Weight to give to recent history versus existing covariance structure +let frequency = 200 // Tune the covariance structure every 200 iterations + +MonteCarlo.adaptiveMetropolis weighting frequency +(** +#### Filzbach-style Monte Carlo + +The Filzbach algorithm was introduced by Drew Purves, Microsoft Research +Cambridge. The Filzbach algorithm was designed for problems in ecological +research. It contains a burn-in phase and a sampling phase. +Four settings are required: the length of the burn-in phase (which can be +any Bristlecone `EndCondition`); the minimum and maximum scale changes that can +occur within the tuning phase, based on the ranges given for each parameter in +the model definition; and the number of changes after which to conduct parameter +tuning. + +*) +open Bristlecone.Optimisation.MonteCarlo.Filzbach + +let settingsFB = { TuneAfterChanges = 20 + MaxScaleChange = 100. + MinScaleChange = 0.01 + BurnLength = EndConditions.afterIteration 100000 } + +filzbach settingsFB +(** +#### 'Automatic' optimisation + +Implementation similar to that proposed by Yang and Rosenthal: "Automatically Tuned +General-Purpose MCMC via New Adaptive Diagnostics" +[Reference](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.70.7198&rep=rep1&type=pdf) + +*) +MonteCarlo.``Automatic (Adaptive Diagnostics)`` +(** +#### Adaptive-Metropolis-within Gibbs + +An adaptive Metropolis-within-Gibbs sampler that tunes the variance of +each parameter according to the per-parameter acceptance rate. +Reference: Bai Y (2009). “An Adaptive Directional Metropolis-within-Gibbs Algorithm.” +Technical Report in Department of Statistics at the University of Toronto. + +*) +MonteCarlo.``Adaptive-Metropolis-within Gibbs`` +(** +#### Metropolis-within Gibbs + +A non-adaptive Metropolis-within-gibbs Sampler. Each parameter +is updated individually, unlike the random walk algorithm. + +*) +MonteCarlo.``Metropolis-within Gibbs`` + diff --git a/optimisation.html b/optimisation.html new file mode 100644 index 0000000..a3edd46 --- /dev/null +++ b/optimisation.html @@ -0,0 +1,646 @@ + + + + + + + + + + + + + + + + + + Optimisation | bristlecone + + + + + + + + + + + + +
                            + +
                            + + + + + +
                            +
                            + +
                            +
                            + +

                            Optimisation Methods

                            +

                            Bristlecone includes a suite of in-built local and global +optimisation methods. You can also use a custom optimisation +method defined in another library, or combine these with the +in-built optimisation techniques.

                            +

                            Defining a custom optimisation method

                            +

                            A custom optimisation +procedure can be used with Bristlecone by plugging in as follows:

                            +
                            open Bristlecone
                            +
                            +let myCustomOptimiser : EstimationEngine.Optimiser<float> =
                            +    EstimationEngine.InDetachedSpace <|
                            +    fun writeOut n domain f -> invalidOp "Doesn't actually do anything!"
                            +
                            +let engine =
                            +    Bristlecone.mkContinuous
                            +    |> Bristlecone.withCustomOptimisation myCustomOptimiser
                            +
                            +

                            Included optimisation methods

                            +

                            The library itself includes Monte Carlo-based methods, and Amoeba (Nelder Mead Simplex) methods. +All methods are included in this namespace:

                            +
                            open Bristlecone.Optimisation
                            +
                            +

                            Simulated Annealing (SA)

                            +

                            Simulated annealing models a minimisation problem in terms of particle +entropy, where the function value is analogous to energy. At high +temperatures, particles are in a high-energy state, thus can move +readily. As temperature gradually decreases, particles are less able +to move to high energy states, with particles eventually arranging +into the ‘ground state’ of a solid material.

                            +

                            The SA implementation in Bristlecone includes classical SA that uses +a Boltzmann machine for jumps, and fast simulated annealing (FSA) that +uses a Cauchy distribution for jumps:

                            +
                            let settings = MonteCarlo.SimulatedAnnealing.AnnealSettings<float>.Default
                            +
                            +// Classical Simulated Annealing:
                            +MonteCarlo.SimulatedAnnealing.classicalSimulatedAnnealing 0.01 false settings
                            +
                            +// Fast Simulated Annealing:
                            +MonteCarlo.SimulatedAnnealing.fastSimulatedAnnealing 0.01 false settings
                            +
                            +

                            The FSA approach enables greater exploration of more distant portions of +parameter space more quickly and is therefore less prone to local minima +problems.

                            +

                            For the SA implementation in Bristlecone, you must specify whether you +wish to use a temperature-dependent or temperature-independent proposal. +When temperature-dependent, the jump size increases at higher temperatures, +allowing coarser exploration of the parameter space initially, progressively +becoming more refined as the system cools.

                            +

                            Nelder-Mead Methods

                            +

                            The Nelder-Mead simplex (or amoeba method) expands and contracts an n-dimensional +geometry within an unconstrained parameter space, following a +‘downhill’ gradient. The implementation here draws a random point from a +normal distribution, informed by the starting bounds for each parameter.

                            +

                            The Nelder-Mead simplex is most appropriate for simpler likelihood surfaces. +It can be used as follows:

                            +
                            let settingsNM = Amoeba.Solver.Default
                            +
                            +
                            { Alpha = 1.0
                            +  Sigma = 0.5
                            +  Gamma = 2.0
                            +  Rho = -0.5
                            +  Size = 3 }
                            +
                            let single : EstimationEngine.Optimise<float> = 
                            +    Amoeba.Solver.solve settingsNM
                            +
                            +

                            A single Nelder-Mead solver is highly subject to local minima. To reduce +the prevalence of local minima, Bristlecone includes a swarm implementation +of the Nelder-Mead simplex, which, creates an ensemble of 20 amoeba, all of which +crawl the likelihood surface. After n iterations, all amoeba that have values +above the 80th percentile of the negative log likelihood values are +discarded. The procedure continues for five levels. The swarm mode +can be used from:

                            +
                            let levels = 5
                            +let individuals = 20
                            +
                            +Amoeba.swarm levels individuals settingsNM
                            +
                            +

                            Monte Carlo methods

                            +

                            Monte Carlo Markov Chain (MCMC) methods are most often applied in Bayesian +analyses, but can also be used for optimisation to identify the -log likelihood. +Within Bristlecone, a number of variations of Monte Carlo methods are included.

                            +

                            Often, it is appropriate to use multiple methods in combination; initially, tuning +algorithm(s) are used to enhance the performance of the search. Once the tuning phase +is complete, a search is conducted to identify the minimum; finally, a sampling algorithm +may be run to explore the distribution around the minimum.

                            +

                            Random Walk Metropolis Hastings

                            +

                            The random walk algorithm may optionally be passed a list of TuningSteps, +which will be run before the final random walk.

                            +
                            // Random walk with no tuning steps
                            +MonteCarlo.randomWalk []
                            +
                            +// Random walk with 50,000 iterations of tuning, during
                            +// which the individual parameter jump sizes are scaled
                            +// every 500 iterations.
                            +[ MonteCarlo.TuneMethod.Scale, 500, EndConditions.afterIteration 50000 ]
                            +|> MonteCarlo.randomWalk
                            +
                            +

                            Adaptive Metropolis (AM)

                            +

                            The AM algorithm continuously tunes the covariance structure of the +jump distribution based on the size of jumps in the recently-explored +parameter space.

                            +
                            let weighting = 0.250 // Weight to give to recent history versus existing covariance structure
                            +let frequency = 200 // Tune the covariance structure every 200 iterations
                            +
                            +MonteCarlo.adaptiveMetropolis weighting frequency
                            +
                            +

                            Filzbach-style Monte Carlo

                            +

                            The Filzbach algorithm was introduced by Drew Purves, Microsoft Research +Cambridge. The Filzbach algorithm was designed for problems in ecological +research. It contains a burn-in phase and a sampling phase. +Four settings are required: the length of the burn-in phase (which can be +any Bristlecone EndCondition); the minimum and maximum scale changes that can +occur within the tuning phase, based on the ranges given for each parameter in +the model definition; and the number of changes after which to conduct parameter +tuning.

                            +
                            open Bristlecone.Optimisation.MonteCarlo.Filzbach
                            +
                            +let settingsFB = { TuneAfterChanges = 20
                            +                   MaxScaleChange = 100.
                            +                   MinScaleChange = 0.01
                            +                   BurnLength = EndConditions.afterIteration 100000 }
                            +
                            +filzbach settingsFB
                            +
                            +

                            'Automatic' optimisation

                            +

                            Implementation similar to that proposed by Yang and Rosenthal: "Automatically Tuned +General-Purpose MCMC via New Adaptive Diagnostics" +Reference

                            +
                            MonteCarlo.``Automatic (Adaptive Diagnostics)``
                            +
                            +

                            Adaptive-Metropolis-within Gibbs

                            +

                            An adaptive Metropolis-within-Gibbs sampler that tunes the variance of +each parameter according to the per-parameter acceptance rate. +Reference: Bai Y (2009). “An Adaptive Directional Metropolis-within-Gibbs Algorithm.” +Technical Report in Department of Statistics at the University of Toronto.

                            +
                            MonteCarlo.``Adaptive-Metropolis-within Gibbs``
                            +
                            +

                            Metropolis-within Gibbs

                            +

                            A non-adaptive Metropolis-within-gibbs Sampler. Each parameter +is updated individually, unlike the random walk algorithm.

                            +
                            MonteCarlo.``Metropolis-within Gibbs``
                            +
                            + +
                            Multiple items
                            module Bristlecone + +from Bristlecone

                            --------------------
                            namespace Bristlecone
                            +
                            val myCustomOptimiser: EstimationEngine.Optimiser<float>
                            +
                            module EstimationEngine + +from Bristlecone
                            +
                            type Optimiser<'data> = + | InTransformedSpace of Optimise<'data> + | InDetachedSpace of Optimise<'data>
                            <summary> + An `Optimiser` is an optimisation algorithm that may work either + in 'transformed' parameter space (where parameter constraints are + automatically handled) or in 'detatched' space (where the optimisation + algorithm is responsible for respecting parameter constraints). +</summary>
                            +
                            Multiple items
                            val float: value: 'T -> float (requires member op_Explicit)

                            --------------------
                            type float = System.Double

                            --------------------
                            type float<'Measure> = + float
                            +
                            union case EstimationEngine.Optimiser.InDetachedSpace: EstimationEngine.Optimise<'data> -> EstimationEngine.Optimiser<'data>
                            +
                            val writeOut: System.Random
                            +
                            val n: EstimationEngine.WriteOut
                            +
                            val domain: EstimationEngine.EndCondition<float>
                            +
                            val f: EstimationEngine.Domain
                            +
                            val invalidOp: message: string -> 'T
                            +
                            val engine: EstimationEngine.EstimationEngine<float,float>
                            +
                            val mkContinuous: EstimationEngine.EstimationEngine<float,float>
                            <summary> + A standard `EstimationEngine` for ordinary differential equation models. +</summary>
                            +
                            val withCustomOptimisation: optim: EstimationEngine.Optimiser<'a> -> engine: EstimationEngine.EstimationEngine<'a,'b> -> EstimationEngine.EstimationEngine<'a,'b>
                            +
                            namespace Bristlecone.Optimisation
                            +
                            val settings: MonteCarlo.SimulatedAnnealing.AnnealSettings<float>
                            +
                            module MonteCarlo + +from Bristlecone.Optimisation
                            <summary> + A module containing Monte Carlo Markov Chain (MCMC) methods for optimisation. + An introduction to MCMC approaches is provided by + [Reali, Priami, and Marchetti (2017)](https://doi.org/10.3389/fams.2017.00006) +</summary>
                            +
                            module SimulatedAnnealing + +from Bristlecone.Optimisation.MonteCarlo
                            <summary> + A meta-heuristic that approximates a global optimium by + simulating slow cooling as a slow decrease in the probability + of temporarily accepting worse solutions. +</summary>
                            +
                            type AnnealSettings<'a> = + { + HeatStepLength: EndCondition<'a> + HeatRamp: (float -> float) + TemperatureCeiling: float option + BoilingAcceptanceRate: float + InitialTemperature: float + PreTuneLength: int + TuneLength: int + TuneN: int + AnnealStepLength: EndCondition<'a> + } + static member Default: AnnealSettings<float>
                            <summary> + Represents configurable settings of an annealing procedure + that supports (a) heating, followed by (b) annealing. +</summary>
                            +
                            val classicalSimulatedAnnealing: scale: float -> tDependentProposal: bool -> settings: MonteCarlo.SimulatedAnnealing.AnnealSettings<float> -> EstimationEngine.Optimiser<float>
                            <summary> + Candidate distribution: Gaussian univariate [] + Probability: Boltzmann Machine +</summary>
                            +
                            val fastSimulatedAnnealing: scale: float -> tDependentProposal: bool -> settings: MonteCarlo.SimulatedAnnealing.AnnealSettings<float> -> EstimationEngine.Optimiser<float>
                            <summary> + Candidate distribution: Cauchy univariate [] + Probability: Bottzmann Machine +</summary>
                            +
                            val settingsNM: Amoeba.Solver.Settings
                            +
                            module Amoeba + +from Bristlecone.Optimisation
                            <summary> + Nelder Mead implementation + Adapted from original at: https://github.com/mathias-brandewinder/Amoeba +</summary>
                            +
                            module Solver + +from Bristlecone.Optimisation.Amoeba
                            +
                            val Default: Amoeba.Solver.Settings
                            +
                            Multiple items
                            val single: EstimationEngine.Optimise<float>

                            --------------------
                            type single = System.Single

                            --------------------
                            type single<'Measure> = float32<'Measure>
                            +
                            type Optimise<'data> = System.Random -> EstimationEngine.WriteOut -> EstimationEngine.EndCondition<'data> -> EstimationEngine.Domain -> EstimationEngine.Point<'data> option -> ('data array -> 'data) -> EstimationEngine.Solution<'data> list
                            +
                            val solve: settings: Amoeba.Solver.Settings -> rng: System.Random -> writeOut: (Logging.LogEvent -> unit) -> endWhen: EstimationEngine.EndCondition<float> -> domain: (float * float * Parameter.Constraint) array -> startPoint: 'a -> f: EstimationEngine.Objective<float> -> EstimationEngine.Solution<float> list
                            +
                            val levels: int
                            +
                            val individuals: int
                            +
                            val swarm: levels: int -> amoebaAtLevel: int -> settings: Amoeba.Solver.Settings -> EstimationEngine.Optimiser<float>
                            <summary> + Optimisation heuristic that creates a swarm of amoeba (Nelder-Mead) solvers. + The swarm proceeds for `numberOfLevels` levels, constraining the starting bounds + at each level to the 80th percentile of the current set of best likelihoods. +</summary>
                            +
                            val randomWalk: tuningSteps: MonteCarlo.TuneStep<float> seq -> EstimationEngine.Optimiser<float>
                            <summary> + A Markov Chain Monte Carlo (MCMC) sampling algorithm that randomly 'walks' + through a n-dimensional posterior distribution of the parameter space. + Specify `tuningSteps` to prime the jump size before random walk. +</summary>
                            +
                            type TuneMethod = + | Covariance of float + | Scale + | CovarianceWithScale of float + | CovarianceWithScaleTotalHistory of float
                            +
                            union case MonteCarlo.TuneMethod.Scale: MonteCarlo.TuneMethod
                            +
                            module EndConditions + +from Bristlecone.Optimisation
                            +
                            val afterIteration: iteration: int -> EstimationEngine.Solution<float> list -> currentIteration: int -> bool
                            <summary> + End the optimisation procedure when a minimum number of iterations is exceeded. +</summary>
                            +
                            val weighting: float
                            +
                            val frequency: int
                            +
                            val adaptiveMetropolis: weighting: float -> period: MonteCarlo.Frequency -> EstimationEngine.Optimiser<float>
                            <summary> + A Markov Chain Monte Carlo (MCMC) sampling algorithm that continually adjusts the + covariance matrix based on the recently-sampled posterior distribution. Proposed + jumps are therefore tuned to the recent history of accepted jumps. +</summary>
                            +
                            module Filzbach + +from Bristlecone.Optimisation.MonteCarlo
                            <summary> + An adaptation of the Filzbach method (originally by Drew Purves) +</summary>
                            +
                            val settingsFB: FilzbachSettings<float>
                            +
                            val filzbach: settings: FilzbachSettings<float> -> EstimationEngine.Optimiser<float>
                            <summary> + A Monte Carlo Markov Chain sampler based on the 'Filzbach' algorithm from + Microsoft Research Cambridge. +</summary>
                            + +
                            +
                            + + + +
                            +
                              +

                              Type something to start searching.

                              +
                              +
                              + + + + + + + \ No newline at end of file diff --git a/optimisation.ipynb b/optimisation.ipynb new file mode 100644 index 0000000..5e02562 --- /dev/null +++ b/optimisation.ipynb @@ -0,0 +1,493 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Optimisation Methods\n", + "\n", + "Bristlecone includes a suite of in-built local and global\n", + "optimisation methods. You can also use a custom optimisation\n", + "method defined in another library, or combine these with the\n", + "in-built optimisation techniques.\n", + "\n", + "## Defining a custom optimisation method\n", + "\n", + "A custom optimisation\n", + "procedure can be used with Bristlecone by plugging in as follows:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone\n", + "\n", + "let myCustomOptimiser : EstimationEngine.Optimiser\u003cfloat\u003e =\n", + " EstimationEngine.InDetachedSpace \u003c|\n", + " fun writeOut n domain f -\u003e invalidOp \"Doesn\u0027t actually do anything!\"\n", + "\n", + "let engine =\n", + " Bristlecone.mkContinuous\n", + " |\u003e Bristlecone.withCustomOptimisation myCustomOptimiser\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "## Included optimisation methods\n", + "\n", + "The library itself includes Monte Carlo-based methods, and Amoeba (Nelder Mead Simplex) methods.\n", + "All methods are included in this namespace:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "open Bristlecone.Optimisation\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Simulated Annealing (SA)\n", + "\n", + "Simulated annealing models a minimisation problem in terms of particle\n", + "entropy, where the function value is analogous to energy. At high\n", + "temperatures, particles are in a high-energy state, thus can move\n", + "readily. As temperature gradually decreases, particles are less able\n", + "to move to high energy states, with particles eventually arranging\n", + "into the ‘ground state’ of a solid material.\n", + "\n", + "The SA implementation in Bristlecone includes classical SA that uses\n", + "a Boltzmann machine for jumps, and fast simulated annealing (FSA) that\n", + "uses a Cauchy distribution for jumps:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 4, "outputs": [], + "source": [ + "let settings = MonteCarlo.SimulatedAnnealing.AnnealSettings\u003cfloat\u003e.Default\n", + "\n", + "// Classical Simulated Annealing:\n", + "MonteCarlo.SimulatedAnnealing.classicalSimulatedAnnealing 0.01 false settings\n", + "\n", + "// Fast Simulated Annealing:\n", + "MonteCarlo.SimulatedAnnealing.fastSimulatedAnnealing 0.01 false settings\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "The FSA approach enables greater exploration of more distant portions of\n", + "parameter space more quickly and is therefore less prone to local minima\n", + "problems.\n", + "\n", + "For the SA implementation in Bristlecone, you must specify whether you\n", + "wish to use a temperature-dependent or temperature-independent proposal.\n", + "When temperature-dependent, the jump size increases at higher temperatures,\n", + "allowing coarser exploration of the parameter space initially, progressively\n", + "becoming more refined as the system cools.\n", + "\n", + "### Nelder-Mead Methods\n", + "\n", + "The Nelder-Mead simplex (or amoeba method) expands and contracts an n-dimensional\n", + "geometry within an unconstrained parameter space, following a\n", + "‘downhill’ gradient. The implementation here draws a random point from a\n", + "normal distribution, informed by the starting bounds for each parameter.\n", + "\n", + "The Nelder-Mead simplex is most appropriate for simpler likelihood surfaces.\n", + "It can be used as follows:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 5, "outputs": [ + { + "data": { + "text/plain": ["{ Alpha = 1.0", +" Sigma = 0.5", +" Gamma = 2.0", +" Rho = -0.5", +" Size = 3 }"] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }], + "source": [ + "let settingsNM = Amoeba.Solver.Default\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 7, "outputs": [], + "source": [ + "let single : EstimationEngine.Optimise\u003cfloat\u003e = \n", + " Amoeba.Solver.solve settingsNM\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "A single Nelder-Mead solver is highly subject to local minima. To reduce\n", + "the prevalence of local minima, Bristlecone includes a **swarm** implementation\n", + "of the Nelder-Mead simplex, which, creates an ensemble of 20 amoeba, all of which\n", + "crawl the likelihood surface. After n iterations, all amoeba that have values\n", + "above the 80th percentile of the negative log likelihood values are\n", + "discarded. The procedure continues for five levels. The swarm mode\n", + "can be used from:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 8, "outputs": [], + "source": [ + "let levels = 5\n", + "let individuals = 20\n", + "\n", + "Amoeba.swarm levels individuals settingsNM\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "### Monte Carlo methods\n", + "\n", + "Monte Carlo Markov Chain (MCMC) methods are most often applied in Bayesian\n", + "analyses, but can also be used for optimisation to identify the -log likelihood.\n", + "Within Bristlecone, a number of variations of Monte Carlo methods are included.\n", + "\n", + "Often, it is appropriate to use multiple methods in combination; initially, tuning\n", + "algorithm(s) are used to enhance the performance of the search. Once the tuning phase\n", + "is complete, a search is conducted to identify the minimum; finally, a sampling algorithm\n", + "may be run to explore the distribution around the minimum.\n", + "\n", + "#### Random Walk Metropolis Hastings\n", + "\n", + "The random walk algorithm may optionally be passed a list of `TuningStep`s,\n", + "which will be run before the final random walk.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 9, "outputs": [], + "source": [ + "// Random walk with no tuning steps\n", + "MonteCarlo.randomWalk []\n", + "\n", + "// Random walk with 50,000 iterations of tuning, during\n", + "// which the individual parameter jump sizes are scaled\n", + "// every 500 iterations.\n", + "[ MonteCarlo.TuneMethod.Scale, 500, EndConditions.afterIteration 50000 ]\n", + "|\u003e MonteCarlo.randomWalk\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "#### Adaptive Metropolis (AM)\n", + "\n", + "The AM algorithm continuously tunes the covariance structure of the\n", + "jump distribution based on the size of jumps in the recently-explored\n", + "parameter space.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 10, "outputs": [], + "source": [ + "let weighting = 0.250 // Weight to give to recent history versus existing covariance structure\n", + "let frequency = 200 // Tune the covariance structure every 200 iterations\n", + "\n", + "MonteCarlo.adaptiveMetropolis weighting frequency\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "#### Filzbach-style Monte Carlo\n", + "\n", + "The Filzbach algorithm was introduced by Drew Purves, Microsoft Research\n", + "Cambridge. The Filzbach algorithm was designed for problems in ecological\n", + "research. It contains a burn-in phase and a sampling phase.\n", + "Four settings are required: the length of the burn-in phase (which can be\n", + "any Bristlecone `EndCondition`); the minimum and maximum scale changes that can\n", + "occur within the tuning phase, based on the ranges given for each parameter in\n", + "the model definition; and the number of changes after which to conduct parameter\n", + "tuning.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 11, "outputs": [], + "source": [ + "open Bristlecone.Optimisation.MonteCarlo.Filzbach\n", + "\n", + "let settingsFB = { TuneAfterChanges = 20\n", + " MaxScaleChange = 100.\n", + " MinScaleChange = 0.01\n", + " BurnLength = EndConditions.afterIteration 100000 }\n", + "\n", + "filzbach settingsFB\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "#### \u0027Automatic\u0027 optimisation\n", + "\n", + "Implementation similar to that proposed by Yang and Rosenthal: \"Automatically Tuned\n", + "General-Purpose MCMC via New Adaptive Diagnostics\"\n", + "[Reference](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.70.7198\u0026rep=rep1\u0026type=pdf)\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 12, "outputs": [], + "source": [ + "MonteCarlo.``Automatic (Adaptive Diagnostics)``\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "#### Adaptive-Metropolis-within Gibbs\n", + "\n", + "An adaptive Metropolis-within-Gibbs sampler that tunes the variance of\n", + "each parameter according to the per-parameter acceptance rate.\n", + "Reference: Bai Y (2009). “An Adaptive Directional Metropolis-within-Gibbs Algorithm.”\n", + "Technical Report in Department of Statistics at the University of Toronto.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 13, "outputs": [], + "source": [ + "MonteCarlo.``Adaptive-Metropolis-within Gibbs``\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "#### Metropolis-within Gibbs\n", + "\n", + "A non-adaptive Metropolis-within-gibbs Sampler. Each parameter\n", + "is updated individually, unlike the random walk algorithm.\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 14, "outputs": [], + "source": [ + "MonteCarlo.``Metropolis-within Gibbs``\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} + diff --git a/reference/bristlecone-bristlecone-0.html b/reference/bristlecone-bristlecone-0.html new file mode 100644 index 0000000..fd08138 --- /dev/null +++ b/reference/bristlecone-bristlecone-0.html @@ -0,0 +1,639 @@ + + + + + + + + + + + + + + + + + + Bristlecone (bristlecone) | bristlecone + + + + + + + + + + + + +
                              + +
                              + + + + + +
                              +
                              + +
                              +
                              +
                              +

                              + Bristlecone Module +

                              + +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +

                              + Functions and values +

                              + + + + + + + + + + + + + + + + + +
                              + Function or value + + Description +
                              +
                              + +

                              + + + fitDendro engine iterations system plant + + +

                              +
                              +
                              +
                              + Full Usage: + fitDendro engine iterations system plant +
                              +
                              + Parameters: + +
                              + + Returns: + Result<EstimationResult, string> + +
                              +
                              +
                              +
                              +
                              +
                              + +
                              + + + + + +

                              + Fit a model to plant growth time-series. The plant individual's + growth data is always labelled as `x`. +

                              +
                              +
                              +
                              +
                              + + engine + + : + EstimationEngine<float, float> +
                              +
                              +
                              + + iterations + + : + EndCondition<float> +
                              +
                              +
                              + + system + + : + ModelSystem +
                              +
                              +
                              + + plant + + : + PlantIndividual +
                              +
                              +
                              +
                              +
                              + + Returns: + + Result<EstimationResult, string> +
                              +
                              +
                              +
                              +
                              +
                              + +

                              + + + predictAheadDendro engine system plant preTransform estimate + + +

                              +
                              +
                              +
                              + Full Usage: + predictAheadDendro engine system plant preTransform estimate +
                              +
                              + Parameters: + +
                              + + Returns: + Result<EstimationResult, string> list + +
                              +
                              +
                              +
                              +
                              +
                              + +
                              + + + + + +

                              + Perform n-step-ahead computation on the hypothesis and plant. + The plant individual's growth data is always labelled as `x`. +

                              +
                              +
                              +
                              +
                              + + engine + + : + EstimationEngine<float, float> +
                              +
                              +
                              + + system + + : + ModelSystem +
                              +
                              +
                              + + plant + + : + PlantIndividual +
                              +
                              +
                              + + preTransform + + : + CodedMap<TimeSeries<float>> -> CodedMap<TimeSeries<float>> +
                              +
                              +
                              + + estimate + + : + Pool +
                              +
                              +
                              +
                              +
                              + + Returns: + + Result<EstimationResult, string> list +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              + + + +
                              +
                                +

                                Type something to start searching.

                                +
                                +
                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-bristlecone-fit.html b/reference/bristlecone-bristlecone-fit.html new file mode 100644 index 0000000..c929507 --- /dev/null +++ b/reference/bristlecone-bristlecone-fit.html @@ -0,0 +1,791 @@ + + + + + + + + + + + + + + + + + + Fit (bristlecone) | bristlecone + + + + + + + + + + + + +
                                + +
                                + + + + + +
                                +
                                + +
                                +
                                +
                                +

                                + Bristlecone.Fit Module +

                                + +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +

                                + Functions and values +

                                + + + + + + + + + + + + + + + + + + + + + + + + + +
                                + Function or value + + Description +
                                +
                                + +

                                + + + environmentDataToCommonTimeFrame dynamicVariableKeys measureKeys timeSeriesData + + +

                                +
                                +
                                +
                                + Full Usage: + environmentDataToCommonTimeFrame dynamicVariableKeys measureKeys timeSeriesData +
                                +
                                + Parameters: + +
                                + + Returns: + Result<TimeFrame<'a> option, string> + +
                                +
                                +
                                +
                                +
                                +
                                + +
                                + + + + + +

                                + Finds environmental data in a timeseries map (i.e. those datasets that are not + dynamic variables or measures), and constructs a common `TimeFrame`. + Returns None if there is no environmental data. +

                                +
                                +
                                +
                                +
                                + + dynamicVariableKeys + + : + ShortCode seq +
                                +
                                +
                                + + measureKeys + + : + ShortCode seq +
                                +
                                +
                                + + timeSeriesData + + : + Map<ShortCode, TimeSeries<'a>> +
                                +
                                +
                                +
                                +
                                + + Returns: + + Result<TimeFrame<'a> option, string> +
                                +
                                +
                                +
                                +
                                +
                                + +

                                + + + exactSubsetOf one two + + +

                                +
                                +
                                +
                                + Full Usage: + exactSubsetOf one two +
                                +
                                + Parameters: +
                                  + + + one + + : + 'a + +
                                  + + + two + + : + 'b + +
                                  +
                                +
                                + + Returns: + Result<('a * 'b), 'c> + +
                                +
                                +
                                +
                                +
                                +
                                + +
                                + + + + + +

                                + TODO make function to check if time-series one is a subset of + time-series two. +

                                +
                                +
                                +
                                +
                                + + one + + : + 'a +
                                +
                                +
                                + + two + + : + 'b +
                                +
                                +
                                +
                                +
                                + + Returns: + + Result<('a * 'b), 'c> +
                                +
                                +
                                +
                                +
                                +
                                + +

                                + + + observationsToCommonTimeFrame equations timeSeriesData + + +

                                +
                                +
                                +
                                + Full Usage: + observationsToCommonTimeFrame equations timeSeriesData +
                                +
                                + Parameters: + +
                                + + Returns: + Result<TimeFrame<'a>, string> + +
                                +
                                +
                                +
                                +
                                +
                                + +
                                + + + + + +

                                + Places a map of `TimeSeries` into a `TimeFrame` that has data + that shares a common timeline. If no timeline is shared, returns + an `Error`. +

                                +
                                +
                                +
                                +
                                + + equations + + : + CodedMap<ModelEquation> +
                                +
                                +
                                + + timeSeriesData + + : + Map<ShortCode, TimeSeries<'a>> +
                                +
                                +
                                +
                                +
                                + + Returns: + + Result<TimeFrame<'a>, string> +
                                +
                                +
                                +
                                +
                                +
                                + +

                                + + + t0 timeSeriesData conditionMode logger + + +

                                +
                                +
                                +
                                + Full Usage: + t0 timeSeriesData conditionMode logger +
                                +
                                + Parameters: + +
                                + + Returns: + Map<ShortCode, 'a> + +
                                +
                                +
                                +
                                +
                                +
                                + +
                                + + + + + +

                                + Returns a tuple of the start point (t0) and the + subsequent time-series (t1 .. tn). +

                                +
                                +
                                +
                                +
                                + + timeSeriesData + + : + CodedMap<TimeSeries<'a>> +
                                +
                                +
                                + + conditionMode + + : + Conditioning<'a> +
                                +
                                +
                                + + logger + + : + LogEvent -> unit +
                                +
                                +
                                +
                                +
                                + + Returns: + + Map<ShortCode, 'a> +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                + + + +
                                +
                                  +

                                  Type something to start searching.

                                  +
                                  +
                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-bristlecone-parallel.html b/reference/bristlecone-bristlecone-parallel.html new file mode 100644 index 0000000..35fcbaf --- /dev/null +++ b/reference/bristlecone-bristlecone-parallel.html @@ -0,0 +1,482 @@ + + + + + + + + + + + + + + + + + + Parallel (bristlecone) | bristlecone + + + + + + + + + + + + +
                                  + +
                                  + + + + + +
                                  +
                                  + +
                                  +
                                  +
                                  +

                                  + Bristlecone.Parallel Module +

                                  + +
                                  +
                                  +

                                  + +

                                  +
                                  +
                                  +
                                  +

                                  + Functions and values +

                                  + + + + + + + + + + + + + +
                                  + Function or value + + Description +
                                  +
                                  + +

                                  + + + fit engine endCondition model growth + + +

                                  +
                                  +
                                  +
                                  + Full Usage: + fit engine endCondition model growth +
                                  +
                                  + Parameters: + +
                                  + + Returns: + Result<EstimationResult, string>[] + +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + + engine + + : + EstimationEngine<float, float> +
                                  +
                                  +
                                  + + endCondition + + : + EndCondition<float> +
                                  +
                                  +
                                  + + model + + : + ModelSystem +
                                  +
                                  +
                                  + + growth + + : + CodedMap<TimeSeries<float>>[] +
                                  +
                                  +
                                  +
                                  +
                                  + + Returns: + + Result<EstimationResult, string>[] +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  + + + +
                                  +
                                    +

                                    Type something to start searching.

                                    +
                                    +
                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-bristlecone.html b/reference/bristlecone-bristlecone.html new file mode 100644 index 0000000..1c91602 --- /dev/null +++ b/reference/bristlecone-bristlecone.html @@ -0,0 +1,1764 @@ + + + + + + + + + + + + + + + + + + Bristlecone (bristlecone) | bristlecone + + + + + + + + + + + + +
                                    + +
                                    + + + + + +
                                    +
                                    + +
                                    +
                                    +
                                    +

                                    + Bristlecone Module +

                                    + +
                                    +
                                    +

                                    + +

                                    +
                                    +
                                    +
                                    +

                                    + Nested modules +

                                    + + + + + + + + + + + + + + + + + +
                                    + Modules + + Description +
                                    +

                                    + + + Fit + + +

                                    +
                                    +
                                    + + + + + +

                                    + +

                                    +
                                    +
                                    +

                                    + + + Parallel + + +

                                    +
                                    +
                                    + + + + + +

                                    + +

                                    +
                                    +
                                    +
                                    +
                                    +

                                    + Functions and values +

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    + Function or value + + Description +
                                    +
                                    + +

                                    + + + Bristlecone.bootstrap engine random iterations bootstrapCount hypothesis identifier series + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.bootstrap engine random iterations bootstrapCount hypothesis identifier series +
                                    +
                                    + Parameters: + +
                                    + + Returns: + Result<EstimationResult, string> list + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +
                                     **Description**
                                    + Repeat a model fit many times, removing a single data point at random each time.
                                    + **Parameters**
                                    +   * `engine` - parameter of type `EstimationEngine`
                                    +   * `iterations` - parameter of type `int`
                                    +   * `burnin` - parameter of type `int`
                                    +   * `bootstrapCount` - parameter of type `int`
                                    +   * `hypothesis` - parameter of type `ModelSystem`
                                    +   * `identifier` - parameter of type `ShortCode`
                                    +   * `series` - parameter of type `CodedMap>`
                                    +
                                    + **Output Type**
                                    +   * `EstimationResult list`
                                    +
                                    + **Exceptions**
                                    +
                                    +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<float, float> +
                                    +
                                    +
                                    + + random + + : + Random +
                                    +
                                    +
                                    + + iterations + + : + EndCondition<float> +
                                    +
                                    +
                                    + + bootstrapCount + + : + int +
                                    +
                                    +
                                    + + hypothesis + + : + ModelSystem +
                                    +
                                    +
                                    + + identifier + + : + ShortCode +
                                    +
                                    +
                                    + + series + + : + CodedMap<TimeSeries<float<MeasureOne>>> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + Result<EstimationResult, string> list +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.fit engine endCondition timeSeriesData model + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.fit engine endCondition timeSeriesData model +
                                    +
                                    + Parameters: +
                                      + + + engine + + : + EstimationEngine<float, float> + - + The engine encapsulates all settings that form part of the estimation + method. Importantly, this includes the random number generator used for all stages + of the analysis; if this is set using a fixed seed, the result will be reproducable. + +
                                      + + + endCondition + + : + EndCondition<float> + - + You must specify a stopping condition, after which + the optimisation process will cease. Bristlecone includes built-in end conditions + in the `Bristlecone.Optimisation.EndConditions` module. + +
                                      + + + timeSeriesData + + : + CodedMap<TimeSeries<float>> + - + + +
                                      + + + model + + : + ModelSystem + - + + +
                                      +
                                    +
                                    + + Returns: + Result<EstimationResult, string> + + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + + Fit a time-series model to data. + + Please note: it is strongly recommended that you test that the given `EstimationEngine` + can correctly identify known parameters for your model. Refer to the `Bristlecone.testModel` + function, which can be used to generate known data and complete this process. + +

                                    +
                                    +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<float, float> +
                                    +
                                    +

                                    + The engine encapsulates all settings that form part of the estimation + method. Importantly, this includes the random number generator used for all stages + of the analysis; if this is set using a fixed seed, the result will be reproducable. +

                                    +
                                    +
                                    + + endCondition + + : + EndCondition<float> +
                                    +
                                    +

                                    + You must specify a stopping condition, after which + the optimisation process will cease. Bristlecone includes built-in end conditions + in the `Bristlecone.Optimisation.EndConditions` module. +

                                    +
                                    +
                                    + + timeSeriesData + + : + CodedMap<TimeSeries<float>> +
                                    +
                                    +

                                    + +

                                    +
                                    +
                                    + + model + + : + ModelSystem +
                                    +
                                    +

                                    + +

                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + Result<EstimationResult, string> +
                                    +
                                    +

                                    + +

                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.mkContinuous + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.mkContinuous +
                                    +
                                    + + Returns: + EstimationEngine<float, float> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + A standard `EstimationEngine` for ordinary differential equation models. +

                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<float, float> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.mkDiscrete + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.mkDiscrete +
                                    +
                                    + + Returns: + EstimationEngine<float, float> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + A standard estimation engine using a random-walk monte carlo optimiser. +

                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<float, float> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.oneStepAhead engine hypothesis preTransform timeSeries estimatedTheta + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.oneStepAhead engine hypothesis preTransform timeSeries estimatedTheta +
                                    +
                                    + Parameters: + +
                                    + + Returns: + Result<EstimationResult, string> list + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + "How good am I at predicting the next data point"? +

                                    +
                                    +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<float, float> +
                                    +
                                    +
                                    + + hypothesis + + : + ModelSystem +
                                    +
                                    +
                                    + + preTransform + + : + CodedMap<TimeSeries<float>> -> CodedMap<TimeSeries<float>> +
                                    +
                                    +
                                    + + timeSeries + + : + Map<ShortCode, TimeSeries<float>> +
                                    +
                                    +
                                    + + estimatedTheta + + : + Pool +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + Result<EstimationResult, string> list +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.testModel engine settings model + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.testModel engine settings model +
                                    +
                                    + Parameters: + +
                                    + + Returns: + Result<TestResult, string> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +
                                     **Description**
                                    + Test that the specified estimation engine can correctly estimate known parameters. Random parameter sets are generated from the given model system.
                                    + **Parameters**
                                    +   * `model` - a `ModelSystem` of equations and parameters
                                    +   * `testSettings` - settings
                                    +   * `engine` - an `EstimationEngine`
                                    +
                                    +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<float, float> +
                                    +
                                    +
                                    + + settings + + : + TestSettings<float> +
                                    +
                                    +
                                    + + model + + : + ModelSystem +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + Result<TestResult, string> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.withConditioning c engine + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.withConditioning c engine +
                                    +
                                    + Parameters: + +
                                    + + Returns: + EstimationEngine<'a, 'b> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + Choose how the start point is chosen when solving the model system +

                                    +
                                    +
                                    +
                                    +
                                    + + c + + : + Conditioning<'a> +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.withContinuousTime t engine + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.withContinuousTime t engine +
                                    +
                                    + Parameters: + +
                                    + + Returns: + EstimationEngine<'a, 'b> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + Use a custom integration method +

                                    +
                                    +
                                    +
                                    +
                                    + + t + + : + Integrate<'a, 'b> +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.withCustomOptimisation optim engine + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.withCustomOptimisation optim engine +
                                    +
                                    + Parameters: + +
                                    + + Returns: + EstimationEngine<'a, 'b> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + optim + + : + Optimiser<'a> +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.withGradientDescent engine + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.withGradientDescent engine +
                                    +
                                    + Parameters: + +
                                    + + Returns: + EstimationEngine<float, 'a> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<float, 'a> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<float, 'a> +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.withOutput out engine + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.withOutput out engine +
                                    +
                                    + Parameters: + +
                                    + + Returns: + EstimationEngine<'a, 'b> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + Add a writer +

                                    +
                                    +
                                    +
                                    +
                                    + + out + + : + WriteOut +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.withSeed seed engine + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.withSeed seed engine +
                                    +
                                    + Parameters: +
                                      + + + seed + + : + int + +
                                      + + + engine + + : + EstimationEngine<'a, 'b> + +
                                      +
                                    +
                                    + + Returns: + EstimationEngine<'a, 'b> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    + + + + + +

                                    + Use a mersenne twister random number generator + with a specific seed. +

                                    +
                                    +
                                    +
                                    +
                                    + + seed + + : + int +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<'a, 'b> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +

                                    + + + Bristlecone.withTunedMCMC tuning engine + + +

                                    +
                                    +
                                    +
                                    + Full Usage: + Bristlecone.withTunedMCMC tuning engine +
                                    +
                                    + Parameters: + +
                                    + + Returns: + EstimationEngine<float, 'a> + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + + tuning + + : + TuneStep<float> seq +
                                    +
                                    +
                                    + + engine + + : + EstimationEngine<float, 'a> +
                                    +
                                    +
                                    +
                                    +
                                    + + Returns: + + EstimationEngine<float, 'a> +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + + + +
                                    +
                                      +

                                      Type something to start searching.

                                      +
                                      +
                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-conditioning-conditioning-1.html b/reference/bristlecone-conditioning-conditioning-1.html new file mode 100644 index 0000000..7194096 --- /dev/null +++ b/reference/bristlecone-conditioning-conditioning-1.html @@ -0,0 +1,502 @@ + + + + + + + + + + + + + + + + + + Conditioning<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                      + +
                                      + + + + + +
                                      +
                                      + +
                                      +
                                      +
                                      +

                                      + Conditioning<'a> Type +

                                      + +
                                      +
                                      +

                                      + +

                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +

                                      + Union cases +

                                      + + + + + + + + + + + + + + + + + + + + + +
                                      + Union case + + Description +
                                      +
                                      + +

                                      + + + Custom CodedMap<'a> + + +

                                      +
                                      +
                                      +
                                      + Full Usage: + Custom CodedMap<'a> +
                                      +
                                      + Parameters: + +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + Item + + : + CodedMap<'a> +
                                      +
                                      +
                                      +
                                      +
                                      + +

                                      + + + NoConditioning + + +

                                      +
                                      +
                                      +
                                      + Full Usage: + NoConditioning +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + + +

                                      + +

                                      +
                                      +
                                      +
                                      + +

                                      + + + RepeatFirstDataPoint + + +

                                      +
                                      +
                                      +
                                      + Full Usage: + RepeatFirstDataPoint +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + + + +

                                      + +

                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      +
                                      + +
                                      +
                                      + + + +
                                      +
                                        +

                                        Type something to start searching.

                                        +
                                        +
                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-conditioning.html b/reference/bristlecone-conditioning.html new file mode 100644 index 0000000..5e71d35 --- /dev/null +++ b/reference/bristlecone-conditioning.html @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + Conditioning (bristlecone) | bristlecone + + + + + + + + + + + + +
                                        + +
                                        + + + + + +
                                        +
                                        + +
                                        +
                                        +
                                        +

                                        + Conditioning Module +

                                        + +
                                        +
                                        +

                                        + +

                                        +
                                        +
                                        +
                                        +

                                        + Types +

                                        + + + + + + + + + + + + + +
                                        + Type + + Description +
                                        +

                                        + + + Conditioning<'a> + + +

                                        +
                                        +
                                        + + + + + +

                                        + +

                                        +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                          +

                                          Type something to start searching.

                                          +
                                          +
                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-confidence-individualci.html b/reference/bristlecone-data-confidence-individualci.html new file mode 100644 index 0000000..4e90277 --- /dev/null +++ b/reference/bristlecone-data-confidence-individualci.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + IndividualCI (bristlecone) | bristlecone + + + + + + + + + + + + +
                                          + +
                                          + + + + + +
                                          +
                                          + +
                                          +
                                          +
                                          +

                                          + Confidence.IndividualCI Type +

                                          + +
                                          +
                                          +

                                          + +

                                          +
                                          +
                                          +
                                          + +
                                          +
                                          + + + +
                                          +
                                            +

                                            Type something to start searching.

                                            +
                                            +
                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-confidence-row.html b/reference/bristlecone-data-confidence-row.html new file mode 100644 index 0000000..521c1e1 --- /dev/null +++ b/reference/bristlecone-data-confidence-row.html @@ -0,0 +1,482 @@ + + + + + + + + + + + + + + + + + + Row (bristlecone) | bristlecone + + + + + + + + + + + + +
                                            + +
                                            + + + + + +
                                            +
                                            + +
                                            +
                                            +
                                            +

                                            + Confidence.Row Module +

                                            + +
                                            +
                                            +

                                            + +

                                            +
                                            +
                                            +
                                            +

                                            + Functions and values +

                                            + + + + + + + + + + + + + +
                                            + Function or value + + Description +
                                            +
                                            + +

                                            + + + fromResult subject hypothesisId runId result + + +

                                            +
                                            +
                                            +
                                            + Full Usage: + fromResult subject hypothesisId runId result +
                                            +
                                            + Parameters: +
                                              + + + subject + + : + string + +
                                              + + + hypothesisId + + : + string + +
                                              + + + runId + + : + Guid + +
                                              + + + result + + : + CodedMap<ConfidenceInterval> + +
                                              +
                                            +
                                            + + Returns: + Row seq + +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + + subject + + : + string +
                                            +
                                            +
                                            + + hypothesisId + + : + string +
                                            +
                                            +
                                            + + runId + + : + Guid +
                                            +
                                            +
                                            + + result + + : + CodedMap<ConfidenceInterval> +
                                            +
                                            +
                                            +
                                            +
                                            + + Returns: + + Row seq +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            +
                                            + +
                                            +
                                            + + + +
                                            +
                                              +

                                              Type something to start searching.

                                              +
                                              +
                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-confidence.html b/reference/bristlecone-data-confidence.html new file mode 100644 index 0000000..67c2ad9 --- /dev/null +++ b/reference/bristlecone-data-confidence.html @@ -0,0 +1,551 @@ + + + + + + + + + + + + + + + + + + Confidence (bristlecone) | bristlecone + + + + + + + + + + + + +
                                              + +
                                              + + + + + +
                                              +
                                              + +
                                              +
                                              +
                                              +

                                              + Confidence Module +

                                              + +
                                              +
                                              +

                                              + +

                                              +
                                              +
                                              +
                                              +

                                              + Types and nested modules +

                                              + + + + + + + + + + + + + + + + + +
                                              + Type/Module + + Description +
                                              +

                                              + + + Row + + +

                                              +
                                              +
                                              + + + + + +

                                              + +

                                              +
                                              +
                                              +

                                              + + + IndividualCI + + +

                                              +
                                              +
                                              + + + + + +

                                              + +

                                              +
                                              +
                                              +
                                              +
                                              +

                                              + Functions and values +

                                              + + + + + + + + + + + + + +
                                              + Function or value + + Description +
                                              +
                                              + +

                                              + + + Confidence.save directory subject modelId runId result + + +

                                              +
                                              +
                                              +
                                              + Full Usage: + Confidence.save directory subject modelId runId result +
                                              +
                                              + Parameters: +
                                                + + + directory + + : + string + +
                                                + + + subject + + : + string + +
                                                + + + modelId + + : + string + +
                                                + + + runId + + : + Guid + +
                                                + + + result + + : + CodedMap<ConfidenceInterval> + +
                                                +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              + + directory + + : + string +
                                              +
                                              +
                                              + + subject + + : + string +
                                              +
                                              +
                                              + + modelId + + : + string +
                                              +
                                              +
                                              + + runId + + : + Guid +
                                              +
                                              +
                                              + + result + + : + CodedMap<ConfidenceInterval> +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              +
                                              + +
                                              +
                                              + + + +
                                              +
                                                +

                                                Type something to start searching.

                                                +
                                                +
                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-config-datatype.html b/reference/bristlecone-data-config-datatype.html new file mode 100644 index 0000000..b3a7442 --- /dev/null +++ b/reference/bristlecone-data-config-datatype.html @@ -0,0 +1,554 @@ + + + + + + + + + + + + + + + + + + DataType (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                + +
                                                + + + + + +
                                                +
                                                + +
                                                +
                                                +
                                                +

                                                + DataType Type +

                                                + +
                                                +
                                                +

                                                + +

                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +

                                                + Union cases +

                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                + Union case + + Description +
                                                +
                                                + +

                                                + + + Components + + +

                                                +
                                                +
                                                +
                                                + Full Usage: + Components +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + +

                                                + +

                                                +
                                                +
                                                +
                                                + +

                                                + + + Intervals + + +

                                                +
                                                +
                                                +
                                                + Full Usage: + Intervals +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + +

                                                + +

                                                +
                                                +
                                                +
                                                + +

                                                + + + MLE + + +

                                                +
                                                +
                                                +
                                                + Full Usage: + MLE +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + +

                                                + +

                                                +
                                                +
                                                +
                                                + +

                                                + + + Series + + +

                                                +
                                                +
                                                +
                                                + Full Usage: + Series +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + +

                                                + +

                                                +
                                                +
                                                +
                                                + +

                                                + + + Trace + + +

                                                +
                                                +
                                                +
                                                + Full Usage: + Trace +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + + + +

                                                + +

                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                +
                                                + +
                                                +
                                                + + + +
                                                +
                                                  +

                                                  Type something to start searching.

                                                  +
                                                  +
                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-config-ensembletype.html b/reference/bristlecone-data-config-ensembletype.html new file mode 100644 index 0000000..7ae26cd --- /dev/null +++ b/reference/bristlecone-data-config-ensembletype.html @@ -0,0 +1,455 @@ + + + + + + + + + + + + + + + + + + EnsembleType (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                  + +
                                                  + + + + + +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +

                                                  + EnsembleType Type +

                                                  + +
                                                  +
                                                  +

                                                  + +

                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +

                                                  + Union cases +

                                                  + + + + + + + + + + + + + + + + + +
                                                  + Union case + + Description +
                                                  +
                                                  + +

                                                  + + + Convergence + + +

                                                  +
                                                  +
                                                  +
                                                  + Full Usage: + Convergence +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + + +

                                                  + +

                                                  +
                                                  +
                                                  +
                                                  + +

                                                  + + + Weights + + +

                                                  +
                                                  +
                                                  +
                                                  + Full Usage: + Weights +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + + +

                                                  + +

                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                    +

                                                    Type something to start searching.

                                                    +
                                                    +
                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-config.html b/reference/bristlecone-data-config.html new file mode 100644 index 0000000..d7162c1 --- /dev/null +++ b/reference/bristlecone-data-config.html @@ -0,0 +1,931 @@ + + + + + + + + + + + + + + + + + + Config (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                    + +
                                                    + + + + + +
                                                    +
                                                    + +
                                                    +
                                                    +
                                                    +

                                                    + Config Module +

                                                    + +
                                                    +
                                                    +

                                                    + Specifies how file paths are constructed for different data types. +

                                                    +
                                                    +
                                                    +
                                                    +

                                                    + Types +

                                                    + + + + + + + + + + + + + + + + + +
                                                    + Type + + Description +
                                                    +

                                                    + + + DataType + + +

                                                    +
                                                    +
                                                    + + + + + +

                                                    + +

                                                    +
                                                    +
                                                    +

                                                    + + + EnsembleType + + +

                                                    +
                                                    +
                                                    + + + + + +

                                                    + +

                                                    +
                                                    +
                                                    +
                                                    +
                                                    +

                                                    + Functions and values +

                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                    + Function or value + + Description +
                                                    +
                                                    + +

                                                    + + + ensembleAsLabel dataType + + +

                                                    +
                                                    +
                                                    +
                                                    + Full Usage: + ensembleAsLabel dataType +
                                                    +
                                                    + Parameters: + +
                                                    + + Returns: + string + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + dataType + + : + EnsembleType +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + Returns: + + string +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + +

                                                    + + + fileMatch directory subject modelId dataType + + +

                                                    +
                                                    +
                                                    +
                                                    + Full Usage: + fileMatch directory subject modelId dataType +
                                                    +
                                                    + Parameters: +
                                                      + + + directory + + : + string + +
                                                      + + + subject + + : + string + +
                                                      + + + modelId + + : + string + +
                                                      + + + dataType + + : + DataType + +
                                                      +
                                                    +
                                                    + + Returns: + (Guid * FileInfo) seq + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + +
                                                    + + + + + +

                                                    + Find files in a directory that match the standard bristlecone + file naming scheme. +

                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + directory + + : + string +
                                                    +
                                                    +
                                                    + + subject + + : + string +
                                                    +
                                                    +
                                                    + + modelId + + : + string +
                                                    +
                                                    +
                                                    + + dataType + + : + DataType +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + Returns: + + (Guid * FileInfo) seq +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + +

                                                    + + + filePath directory subject modelId resultId dataType + + +

                                                    +
                                                    +
                                                    +
                                                    + Full Usage: + filePath directory subject modelId resultId dataType +
                                                    +
                                                    + Parameters: +
                                                      + + + directory + + : + string + +
                                                      + + + subject + + : + string + +
                                                      + + + modelId + + : + string + +
                                                      + + + resultId + + : + Guid + +
                                                      + + + dataType + + : + DataType + +
                                                      +
                                                    +
                                                    + + Returns: + string + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + directory + + : + string +
                                                    +
                                                    +
                                                    + + subject + + : + string +
                                                    +
                                                    +
                                                    + + modelId + + : + string +
                                                    +
                                                    +
                                                    + + resultId + + : + Guid +
                                                    +
                                                    +
                                                    + + dataType + + : + DataType +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + Returns: + + string +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + +

                                                    + + + filePathEnsemble directory dataType + + +

                                                    +
                                                    +
                                                    +
                                                    + Full Usage: + filePathEnsemble directory dataType +
                                                    +
                                                    + Parameters: +
                                                      + + + directory + + : + string + +
                                                      + + + dataType + + : + EnsembleType + +
                                                      +
                                                    +
                                                    + + Returns: + string + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + directory + + : + string +
                                                    +
                                                    +
                                                    + + dataType + + : + EnsembleType +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + Returns: + + string +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + +

                                                    + + + regexGuid + + +

                                                    +
                                                    +
                                                    +
                                                    + Full Usage: + regexGuid +
                                                    +
                                                    + + Returns: + string + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + Returns: + + string +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + +

                                                    + + + typeAsLabel dataType + + +

                                                    +
                                                    +
                                                    +
                                                    + Full Usage: + typeAsLabel dataType +
                                                    +
                                                    + Parameters: + +
                                                    + + Returns: + string + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + dataType + + : + DataType +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + Returns: + + string +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + +
                                                    +
                                                    + + + +
                                                    +
                                                      +

                                                      Type something to start searching.

                                                      +
                                                      +
                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-convergence-convergencestats.html b/reference/bristlecone-data-convergence-convergencestats.html new file mode 100644 index 0000000..9d8333b --- /dev/null +++ b/reference/bristlecone-data-convergence-convergencestats.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + ConvergenceStats (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                      + +
                                                      + + + + + +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +

                                                      + Convergence.ConvergenceStats Type +

                                                      + +
                                                      +
                                                      +

                                                      + +

                                                      +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      +
                                                        +

                                                        Type something to start searching.

                                                        +
                                                        +
                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-convergence.html b/reference/bristlecone-data-convergence.html new file mode 100644 index 0000000..0fa9f82 --- /dev/null +++ b/reference/bristlecone-data-convergence.html @@ -0,0 +1,537 @@ + + + + + + + + + + + + + + + + + + Convergence (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                        + +
                                                        + + + + + +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        +

                                                        + Convergence Module +

                                                        + +
                                                        +
                                                        +

                                                        + +

                                                        +
                                                        +
                                                        +
                                                        +

                                                        + Types +

                                                        + + + + + + + + + + + + + +
                                                        + Type + + Description +
                                                        +

                                                        + + + ConvergenceStats + + +

                                                        +
                                                        +
                                                        + + + + + +

                                                        + +

                                                        +
                                                        +
                                                        +
                                                        +
                                                        +

                                                        + Functions and values +

                                                        + + + + + + + + + + + + + + + + + +
                                                        + Function or value + + Description +
                                                        +
                                                        + +

                                                        + + + Convergence.save directory result + + +

                                                        +
                                                        +
                                                        +
                                                        + Full Usage: + Convergence.save directory result +
                                                        +
                                                        + Parameters: + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + directory + + : + string +
                                                        +
                                                        +
                                                        + + result + + : + ConvergenceStatistic seq seq +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + +

                                                        + + + Convergence.toCsvRows result + + +

                                                        +
                                                        +
                                                        +
                                                        + Full Usage: + Convergence.toCsvRows result +
                                                        +
                                                        + Parameters: + +
                                                        + + Returns: + Row seq + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + result + + : + ConvergenceStatistic seq seq +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + Returns: + + Row seq +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        +
                                                          +

                                                          Type something to start searching.

                                                          +
                                                          +
                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-estimationresult.html b/reference/bristlecone-data-estimationresult.html new file mode 100644 index 0000000..df07842 --- /dev/null +++ b/reference/bristlecone-data-estimationresult.html @@ -0,0 +1,626 @@ + + + + + + + + + + + + + + + + + + EstimationResult (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                          + +
                                                          + + + + + +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +

                                                          + EstimationResult Module +

                                                          + +
                                                          +
                                                          +

                                                          + +

                                                          +
                                                          +
                                                          +
                                                          +

                                                          + Functions and values +

                                                          + + + + + + + + + + + + + + + + + +
                                                          + Function or value + + Description +
                                                          +
                                                          + +

                                                          + + + EstimationResult.loadAll directory subject modelSystem modelId + + +

                                                          +
                                                          +
                                                          +
                                                          + Full Usage: + EstimationResult.loadAll directory subject modelSystem modelId +
                                                          +
                                                          + Parameters: +
                                                            + + + directory + + : + string + +
                                                            + + + subject + + : + string + +
                                                            + + + modelSystem + + : + ModelSystem + +
                                                            + + + modelId + + : + string + +
                                                            +
                                                          +
                                                          + + Returns: + EstimationResult seq + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          + + + + + +

                                                          + Load an `EstimationResult` that has previously been saved as + three seperate dataframes. Results will only be reconstructed + when file names and formats are in original Bristlecone format. +

                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + directory + + : + string +
                                                          +
                                                          +
                                                          + + subject + + : + string +
                                                          +
                                                          +
                                                          + + modelSystem + + : + ModelSystem +
                                                          +
                                                          +
                                                          + + modelId + + : + string +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + Returns: + + EstimationResult seq +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +

                                                          + + + EstimationResult.saveAll directory subject modelId thinTraceBy result + + +

                                                          +
                                                          +
                                                          +
                                                          + Full Usage: + EstimationResult.saveAll directory subject modelId thinTraceBy result +
                                                          +
                                                          + Parameters: +
                                                            + + + directory + + : + string + +
                                                            + + + subject + + : + string + +
                                                            + + + modelId + + : + string + +
                                                            + + + thinTraceBy + + : + int + +
                                                            + + + result + + : + EstimationResult + +
                                                            +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          + + + + + +

                                                          + Save the Maximum Likelihood Estimate, trace of the optimisation + procedure, and time-series. +

                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + directory + + : + string +
                                                          +
                                                          +
                                                          + + subject + + : + string +
                                                          +
                                                          +
                                                          + + modelId + + : + string +
                                                          +
                                                          +
                                                          + + thinTraceBy + + : + int +
                                                          +
                                                          +
                                                          + + result + + : + EstimationResult +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          +
                                                            +

                                                            Type something to start searching.

                                                            +
                                                            +
                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-mle-individualmle.html b/reference/bristlecone-data-mle-individualmle.html new file mode 100644 index 0000000..32b5645 --- /dev/null +++ b/reference/bristlecone-data-mle-individualmle.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + IndividualMLE (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                            + +
                                                            + + + + + +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            +

                                                            + MLE.IndividualMLE Type +

                                                            + +
                                                            +
                                                            +

                                                            + +

                                                            +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                              +

                                                              Type something to start searching.

                                                              +
                                                              +
                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-mle-row.html b/reference/bristlecone-data-mle-row.html new file mode 100644 index 0000000..45b8601 --- /dev/null +++ b/reference/bristlecone-data-mle-row.html @@ -0,0 +1,527 @@ + + + + + + + + + + + + + + + + + + Row (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                              + +
                                                              + + + + + +
                                                              +
                                                              + +
                                                              +
                                                              +
                                                              +

                                                              + MLE.Row Module +

                                                              + +
                                                              +
                                                              +

                                                              + +

                                                              +
                                                              +
                                                              +
                                                              +

                                                              + Functions and values +

                                                              + + + + + + + + + + + + + + + + + +
                                                              + Function or value + + Description +
                                                              +
                                                              + +

                                                              + + + fromResult subject hypothesisId result + + +

                                                              +
                                                              +
                                                              +
                                                              + Full Usage: + fromResult subject hypothesisId result +
                                                              +
                                                              + Parameters: +
                                                                + + + subject + + : + string + +
                                                                + + + hypothesisId + + : + string + +
                                                                + + + result + + : + EstimationResult + +
                                                                +
                                                              +
                                                              + + Returns: + Row seq + +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + + subject + + : + string +
                                                              +
                                                              +
                                                              + + hypothesisId + + : + string +
                                                              +
                                                              +
                                                              + + result + + : + EstimationResult +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + + Returns: + + Row seq +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + +

                                                              + + + toResult data + + +

                                                              +
                                                              +
                                                              +
                                                              + Full Usage: + toResult data +
                                                              +
                                                              + Parameters: + +
                                                              + + Returns: + Result<(float * Map<ShortCode, float>), string> + +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + + data + + : + IndividualMLE +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + + Returns: + + Result<(float * Map<ShortCode, float>), string> +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              +
                                                                +

                                                                Type something to start searching.

                                                                +
                                                                +
                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-mle.html b/reference/bristlecone-data-mle.html new file mode 100644 index 0000000..3244bf7 --- /dev/null +++ b/reference/bristlecone-data-mle.html @@ -0,0 +1,628 @@ + + + + + + + + + + + + + + + + + + MLE (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                + +
                                                                + + + + + +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +

                                                                + MLE Module +

                                                                + +
                                                                +
                                                                +

                                                                + +

                                                                +
                                                                +
                                                                +
                                                                +

                                                                + Types and nested modules +

                                                                + + + + + + + + + + + + + + + + + +
                                                                + Type/Module + + Description +
                                                                +

                                                                + + + Row + + +

                                                                +
                                                                +
                                                                + + + + + +

                                                                + +

                                                                +
                                                                +
                                                                +

                                                                + + + IndividualMLE + + +

                                                                +
                                                                +
                                                                + + + + + +

                                                                + +

                                                                +
                                                                +
                                                                +
                                                                +
                                                                +

                                                                + Functions and values +

                                                                + + + + + + + + + + + + + + + + + +
                                                                + Function or value + + Description +
                                                                +
                                                                + +

                                                                + + + MLE.load directory subject modelId + + +

                                                                +
                                                                +
                                                                +
                                                                + Full Usage: + MLE.load directory subject modelId +
                                                                +
                                                                + Parameters: +
                                                                  + + + directory + + : + string + +
                                                                  + + + subject + + : + string + +
                                                                  + + + modelId + + : + string + +
                                                                  +
                                                                +
                                                                + + Returns: + (Guid * (float * Map<ShortCode, float>)) seq + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + directory + + : + string +
                                                                +
                                                                +
                                                                + + subject + + : + string +
                                                                +
                                                                +
                                                                + + modelId + + : + string +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + Returns: + + (Guid * (float * Map<ShortCode, float>)) seq +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + +

                                                                + + + MLE.save directory subject modelId result + + +

                                                                +
                                                                +
                                                                +
                                                                + Full Usage: + MLE.save directory subject modelId result +
                                                                +
                                                                + Parameters: +
                                                                  + + + directory + + : + string + +
                                                                  + + + subject + + : + string + +
                                                                  + + + modelId + + : + string + +
                                                                  + + + result + + : + EstimationResult + +
                                                                  +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + directory + + : + string +
                                                                +
                                                                +
                                                                + + subject + + : + string +
                                                                +
                                                                +
                                                                + + modelId + + : + string +
                                                                +
                                                                +
                                                                + + result + + : + EstimationResult +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                  +

                                                                  Type something to start searching.

                                                                  +
                                                                  +
                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-modelselection-ensembleaic.html b/reference/bristlecone-data-modelselection-ensembleaic.html new file mode 100644 index 0000000..0384816 --- /dev/null +++ b/reference/bristlecone-data-modelselection-ensembleaic.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + EnsembleAIC (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                  + +
                                                                  + + + + + +
                                                                  +
                                                                  + +
                                                                  +
                                                                  +
                                                                  +

                                                                  + ModelSelection.EnsembleAIC Type +

                                                                  + +
                                                                  +
                                                                  +

                                                                  + +

                                                                  +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + + + +
                                                                  +
                                                                    +

                                                                    Type something to start searching.

                                                                    +
                                                                    +
                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-modelselection-row.html b/reference/bristlecone-data-modelselection-row.html new file mode 100644 index 0000000..97cdb4c --- /dev/null +++ b/reference/bristlecone-data-modelselection-row.html @@ -0,0 +1,434 @@ + + + + + + + + + + + + + + + + + + Row (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                    + +
                                                                    + + + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +

                                                                    + ModelSelection.Row Module +

                                                                    + +
                                                                    +
                                                                    +

                                                                    + +

                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    + Functions and values +

                                                                    + + + + + + + + + + + + + +
                                                                    + Function or value + + Description +
                                                                    +
                                                                    + +

                                                                    + + + fromResult result + + +

                                                                    +
                                                                    +
                                                                    +
                                                                    + Full Usage: + fromResult result +
                                                                    +
                                                                    + Parameters: + +
                                                                    + + Returns: + Row seq + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + result + + : + (string * string * EstimationResult * AkaikeWeight) seq +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + Returns: + + Row seq +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    +
                                                                      +

                                                                      Type something to start searching.

                                                                      +
                                                                      +
                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-modelselection.html b/reference/bristlecone-data-modelselection.html new file mode 100644 index 0000000..f0fa458 --- /dev/null +++ b/reference/bristlecone-data-modelselection.html @@ -0,0 +1,503 @@ + + + + + + + + + + + + + + + + + + ModelSelection (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                      + +
                                                                      + + + + + +
                                                                      +
                                                                      + +
                                                                      +
                                                                      +
                                                                      +

                                                                      + ModelSelection Module +

                                                                      + +
                                                                      +
                                                                      +

                                                                      + +

                                                                      +
                                                                      +
                                                                      +
                                                                      +

                                                                      + Types and nested modules +

                                                                      + + + + + + + + + + + + + + + + + +
                                                                      + Type/Module + + Description +
                                                                      +

                                                                      + + + Row + + +

                                                                      +
                                                                      +
                                                                      + + + + + +

                                                                      + +

                                                                      +
                                                                      +
                                                                      +

                                                                      + + + EnsembleAIC + + +

                                                                      +
                                                                      +
                                                                      + + + + + +

                                                                      + +

                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +

                                                                      + Functions and values +

                                                                      + + + + + + + + + + + + + +
                                                                      + Function or value + + Description +
                                                                      +
                                                                      + +

                                                                      + + + ModelSelection.save directory result + + +

                                                                      +
                                                                      +
                                                                      +
                                                                      + Full Usage: + ModelSelection.save directory result +
                                                                      +
                                                                      + Parameters: + +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      + + directory + + : + string +
                                                                      +
                                                                      +
                                                                      + + result + + : + (string * string * EstimationResult * AkaikeWeight) seq +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      + +
                                                                      +
                                                                      + + + +
                                                                      +
                                                                        +

                                                                        Type something to start searching.

                                                                        +
                                                                        +
                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-plantindividual-environmentvariabledata.html b/reference/bristlecone-data-plantindividual-environmentvariabledata.html new file mode 100644 index 0000000..32b6d5c --- /dev/null +++ b/reference/bristlecone-data-plantindividual-environmentvariabledata.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + EnvironmentVariableData (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                        + +
                                                                        + + + + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +

                                                                        + EnvironmentVariableData Type +

                                                                        + +
                                                                        +
                                                                        +

                                                                        + +

                                                                        +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + + + +
                                                                        +
                                                                          +

                                                                          Type something to start searching.

                                                                          +
                                                                          +
                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-plantindividual-ringwidthdata.html b/reference/bristlecone-data-plantindividual-ringwidthdata.html new file mode 100644 index 0000000..99379e3 --- /dev/null +++ b/reference/bristlecone-data-plantindividual-ringwidthdata.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + RingWidthData (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                          + +
                                                                          + + + + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +

                                                                          + RingWidthData Type +

                                                                          + +
                                                                          +
                                                                          +

                                                                          + +

                                                                          +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                            +

                                                                            Type something to start searching.

                                                                            +
                                                                            +
                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-plantindividual.html b/reference/bristlecone-data-plantindividual.html new file mode 100644 index 0000000..a1f8ba7 --- /dev/null +++ b/reference/bristlecone-data-plantindividual.html @@ -0,0 +1,562 @@ + + + + + + + + + + + + + + + + + + PlantIndividual (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                            + +
                                                                            + + + + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +

                                                                            + PlantIndividual Module +

                                                                            + +
                                                                            +
                                                                            +

                                                                            + +

                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            + Types +

                                                                            + + + + + + + + + + + + + + + + + +
                                                                            + Type + + Description +
                                                                            +

                                                                            + + + EnvironmentVariableData + + +

                                                                            +
                                                                            +
                                                                            + + + + + +

                                                                            + +

                                                                            +
                                                                            +
                                                                            +

                                                                            + + + RingWidthData + + +

                                                                            +
                                                                            +
                                                                            + + + + + +

                                                                            + +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            + Functions and values +

                                                                            + + + + + + + + + + + + + + + + + +
                                                                            + Function or value + + Description +
                                                                            +
                                                                            + +

                                                                            + + + loadLocalEnvironmentVariable fileName + + +

                                                                            +
                                                                            +
                                                                            +
                                                                            + Full Usage: + loadLocalEnvironmentVariable fileName +
                                                                            +
                                                                            + Parameters: +
                                                                              + + + fileName + + : + string + +
                                                                              +
                                                                            +
                                                                            + + Returns: + (string * TimeSeries<float>) list + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + fileName + + : + string +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + (string * TimeSeries<float>) list +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +

                                                                            + + + loadRingWidths fileName + + +

                                                                            +
                                                                            +
                                                                            +
                                                                            + Full Usage: + loadRingWidths fileName +
                                                                            +
                                                                            + Parameters: +
                                                                              + + + fileName + + : + string + +
                                                                              +
                                                                            +
                                                                            + + Returns: + PlantIndividual list + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + fileName + + : + string +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + PlantIndividual list +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                              +

                                                                              Type something to start searching.

                                                                              +
                                                                              +
                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-series-individualseries.html b/reference/bristlecone-data-series-individualseries.html new file mode 100644 index 0000000..4603313 --- /dev/null +++ b/reference/bristlecone-data-series-individualseries.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + IndividualSeries (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                              + +
                                                                              + + + + + +
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +

                                                                              + Series.IndividualSeries Type +

                                                                              + +
                                                                              +
                                                                              +

                                                                              + +

                                                                              +
                                                                              +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                                +

                                                                                Type something to start searching.

                                                                                +
                                                                                +
                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-series-row.html b/reference/bristlecone-data-series-row.html new file mode 100644 index 0000000..15cdc00 --- /dev/null +++ b/reference/bristlecone-data-series-row.html @@ -0,0 +1,527 @@ + + + + + + + + + + + + + + + + + + Row (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                + +
                                                                                + + + + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +

                                                                                + Series.Row Module +

                                                                                + +
                                                                                +
                                                                                +

                                                                                + +

                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                + Functions and values +

                                                                                + + + + + + + + + + + + + + + + + +
                                                                                + Function or value + + Description +
                                                                                +
                                                                                + +

                                                                                + + + fromResult subject hypothesisId result + + +

                                                                                +
                                                                                +
                                                                                +
                                                                                + Full Usage: + fromResult subject hypothesisId result +
                                                                                +
                                                                                + Parameters: +
                                                                                  + + + subject + + : + string + +
                                                                                  + + + hypothesisId + + : + string + +
                                                                                  + + + result + + : + EstimationResult + +
                                                                                  +
                                                                                +
                                                                                + + Returns: + Row seq + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + subject + + : + string +
                                                                                +
                                                                                +
                                                                                + + hypothesisId + + : + string +
                                                                                +
                                                                                +
                                                                                + + result + + : + EstimationResult +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + Row seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +

                                                                                + + + toSeries data + + +

                                                                                +
                                                                                +
                                                                                +
                                                                                + Full Usage: + toSeries data +
                                                                                +
                                                                                + Parameters: + +
                                                                                + + Returns: + CodedMap<FitSeries> + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + data + + : + IndividualSeries +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + CodedMap<FitSeries> +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                +
                                                                                  +

                                                                                  Type something to start searching.

                                                                                  +
                                                                                  +
                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-series.html b/reference/bristlecone-data-series.html new file mode 100644 index 0000000..c668764 --- /dev/null +++ b/reference/bristlecone-data-series.html @@ -0,0 +1,628 @@ + + + + + + + + + + + + + + + + + + Series (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                  + +
                                                                                  + + + + + +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  + Series Module +

                                                                                  + +
                                                                                  +
                                                                                  +

                                                                                  + +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  + Types and nested modules +

                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                  + Type/Module + + Description +
                                                                                  +

                                                                                  + + + Row + + +

                                                                                  +
                                                                                  +
                                                                                  + + + + + +

                                                                                  + +

                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  + + + IndividualSeries + + +

                                                                                  +
                                                                                  +
                                                                                  + + + + + +

                                                                                  + +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  + Functions and values +

                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                  + Function or value + + Description +
                                                                                  +
                                                                                  + +

                                                                                  + + + Series.load directory subject modelId + + +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + Full Usage: + Series.load directory subject modelId +
                                                                                  +
                                                                                  + Parameters: +
                                                                                    + + + directory + + : + string + +
                                                                                    + + + subject + + : + string + +
                                                                                    + + + modelId + + : + string + +
                                                                                    +
                                                                                  +
                                                                                  + + Returns: + (Guid * CodedMap<FitSeries>) seq + +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + directory + + : + string +
                                                                                  +
                                                                                  +
                                                                                  + + subject + + : + string +
                                                                                  +
                                                                                  +
                                                                                  + + modelId + + : + string +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + (Guid * CodedMap<FitSeries>) seq +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + +

                                                                                  + + + Series.save directory subject modelId result + + +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + Full Usage: + Series.save directory subject modelId result +
                                                                                  +
                                                                                  + Parameters: +
                                                                                    + + + directory + + : + string + +
                                                                                    + + + subject + + : + string + +
                                                                                    + + + modelId + + : + string + +
                                                                                    + + + result + + : + EstimationResult + +
                                                                                    +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + directory + + : + string +
                                                                                  +
                                                                                  +
                                                                                  + + subject + + : + string +
                                                                                  +
                                                                                  +
                                                                                  + + modelId + + : + string +
                                                                                  +
                                                                                  +
                                                                                  + + result + + : + EstimationResult +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + +
                                                                                  +
                                                                                    +

                                                                                    Type something to start searching.

                                                                                    +
                                                                                    +
                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-trace-bristleconetrace.html b/reference/bristlecone-data-trace-bristleconetrace.html new file mode 100644 index 0000000..cfe63f6 --- /dev/null +++ b/reference/bristlecone-data-trace-bristleconetrace.html @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + BristleconeTrace (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                    + +
                                                                                    + + + + + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    + Trace.BristleconeTrace Type +

                                                                                    + +
                                                                                    +
                                                                                    +

                                                                                    + +

                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + +
                                                                                    +
                                                                                      +

                                                                                      Type something to start searching.

                                                                                      +
                                                                                      +
                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-trace-row.html b/reference/bristlecone-data-trace-row.html new file mode 100644 index 0000000..65633cd --- /dev/null +++ b/reference/bristlecone-data-trace-row.html @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + Row (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                      + +
                                                                                      + + + + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      + Trace.Row Module +

                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                        +

                                                                                        Type something to start searching.

                                                                                        +
                                                                                        +
                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data-trace.html b/reference/bristlecone-data-trace.html new file mode 100644 index 0000000..20853fa --- /dev/null +++ b/reference/bristlecone-data-trace.html @@ -0,0 +1,680 @@ + + + + + + + + + + + + + + + + + + Trace (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                        + +
                                                                                        + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        + Trace Module +

                                                                                        + +
                                                                                        +
                                                                                        +

                                                                                        + +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        + Types and nested modules +

                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                        + Type/Module + + Description +
                                                                                        +

                                                                                        + + + Row + + +

                                                                                        +
                                                                                        +
                                                                                        + + + + + +

                                                                                        + +

                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        + + + BristleconeTrace + + +

                                                                                        +
                                                                                        +
                                                                                        + + + + + +

                                                                                        + +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        + Functions and values +

                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                        + Function or value + + Description +
                                                                                        +
                                                                                        + +

                                                                                        + + + Trace.load directory subject modelId + + +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + Full Usage: + Trace.load directory subject modelId +
                                                                                        +
                                                                                        + Parameters: +
                                                                                          + + + directory + + : + string + +
                                                                                          + + + subject + + : + string + +
                                                                                          + + + modelId + + : + string + +
                                                                                          +
                                                                                        +
                                                                                        + + Returns: + (Guid * (float * float[]) list) seq + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + + + + + +

                                                                                        + Load a trace from a CSV file, as saved by Bristlecone. +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + directory + + : + string +
                                                                                        +
                                                                                        +
                                                                                        + + subject + + : + string +
                                                                                        +
                                                                                        +
                                                                                        + + modelId + + : + string +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + Returns: + + (Guid * (float * float[]) list) seq +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +

                                                                                        + + + Trace.save directory subject modelId thinBy result + + +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + Full Usage: + Trace.save directory subject modelId thinBy result +
                                                                                        +
                                                                                        + Parameters: +
                                                                                          + + + directory + + : + string + +
                                                                                          + + + subject + + : + string + +
                                                                                          + + + modelId + + : + string + +
                                                                                          + + + thinBy + + : + int + +
                                                                                          + + + result + + : + EstimationResult + +
                                                                                          +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + + + + + +

                                                                                        + Save the trace of an `EstimationResult` to a CSV file. +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + directory + + : + string +
                                                                                        +
                                                                                        +
                                                                                        + + subject + + : + string +
                                                                                        +
                                                                                        +
                                                                                        + + modelId + + : + string +
                                                                                        +
                                                                                        +
                                                                                        + + thinBy + + : + int +
                                                                                        +
                                                                                        +
                                                                                        + + result + + : + EstimationResult +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + +
                                                                                        +
                                                                                          +

                                                                                          Type something to start searching.

                                                                                          +
                                                                                          +
                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-data.html b/reference/bristlecone-data.html new file mode 100644 index 0000000..c4accc8 --- /dev/null +++ b/reference/bristlecone-data.html @@ -0,0 +1,584 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Data | bristlecone + + + + + + + + + + + + +
                                                                                          + +
                                                                                          + + + + + +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + Bristlecone.Data Namespace +

                                                                                          +
                                                                                          +

                                                                                          + Contains functions that enable loading and saving of core Bristlecone types to file storage. +

                                                                                          +
                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                          + Modules + + Description +
                                                                                          +

                                                                                          + + + Confidence + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + Config + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + Specifies how file paths are constructed for different data types. +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + Convergence + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + EstimationResult + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + MLE + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + ModelSelection + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + PlantIndividual + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + Series + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          + + + Trace + + +

                                                                                          +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + +

                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          +
                                                                                            +

                                                                                            Type something to start searching.

                                                                                            +
                                                                                            +
                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-environmentalvariables.html b/reference/bristlecone-dendro-environmentalvariables.html new file mode 100644 index 0000000..8fa820e --- /dev/null +++ b/reference/bristlecone-dendro-environmentalvariables.html @@ -0,0 +1,340 @@ + + + + + + + + + + + + + + + + + + EnvironmentalVariables (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                            + +
                                                                                            + + + + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            + EnvironmentalVariables Module +

                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + +

                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            +
                                                                                              +

                                                                                              Type something to start searching.

                                                                                              +
                                                                                              +
                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-juliandate.html b/reference/bristlecone-dendro-juliandate.html new file mode 100644 index 0000000..64ef003 --- /dev/null +++ b/reference/bristlecone-dendro-juliandate.html @@ -0,0 +1,715 @@ + + + + + + + + + + + + + + + + + + JulianDate (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                              + +
                                                                                              + + + + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + JulianDate Module +

                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + Functions and values +

                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              + Function or value + + Description +
                                                                                              +
                                                                                              + +

                                                                                              + + + J2000 + + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + Full Usage: + J2000 +
                                                                                              +
                                                                                              + + Returns: + int + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + int +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              + + + gregorianToJulian gDate timeZoneOffsetHours + + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + Full Usage: + gregorianToJulian gDate timeZoneOffsetHours +
                                                                                              +
                                                                                              + Parameters: +
                                                                                                + + + gDate + + : + DateTime + +
                                                                                                + + + timeZoneOffsetHours + + : + float + +
                                                                                                +
                                                                                              +
                                                                                              + + Returns: + float + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + gDate + + : + DateTime +
                                                                                              +
                                                                                              +
                                                                                              + + timeZoneOffsetHours + + : + float +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + float +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              + + + julianCentury jDate + + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + Full Usage: + julianCentury jDate +
                                                                                              +
                                                                                              + Parameters: +
                                                                                                + + + jDate + + : + float + +
                                                                                                +
                                                                                              +
                                                                                              + + Returns: + float + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + jDate + + : + float +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + float +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              + + + minutesInDay + + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + Full Usage: + minutesInDay +
                                                                                              +
                                                                                              + + Returns: + int + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + int +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              + + + secondsInDay + + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + Full Usage: + secondsInDay +
                                                                                              +
                                                                                              + + Returns: + int + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + int +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              + + + toDate timeZone gDate time + + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + Full Usage: + toDate timeZone gDate time +
                                                                                              +
                                                                                              + Parameters: +
                                                                                                + + + timeZone + + : + TimeZoneInfo + +
                                                                                                + + + gDate + + : + DateTime + +
                                                                                                + + + time + + : + float + +
                                                                                                +
                                                                                              +
                                                                                              + + Returns: + DateTimeOffset + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + timeZone + + : + TimeZoneInfo +
                                                                                              +
                                                                                              +
                                                                                              + + gDate + + : + DateTime +
                                                                                              +
                                                                                              +
                                                                                              + + time + + : + float +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + DateTimeOffset +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + +
                                                                                              +
                                                                                                +

                                                                                                Type something to start searching.

                                                                                                +
                                                                                                +
                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-mm.html b/reference/bristlecone-dendro-mm.html new file mode 100644 index 0000000..ce07345 --- /dev/null +++ b/reference/bristlecone-dendro-mm.html @@ -0,0 +1,344 @@ + + + + + + + + + + + + + + + + + + mm (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                + +
                                                                                                + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                + mm Type +

                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                +
                                                                                                  +

                                                                                                  Type something to start searching.

                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-plantindividual-plantgrowth.html b/reference/bristlecone-dendro-plantindividual-plantgrowth.html new file mode 100644 index 0000000..39da185 --- /dev/null +++ b/reference/bristlecone-dendro-plantindividual-plantgrowth.html @@ -0,0 +1,530 @@ + + + + + + + + + + + + + + + + + + PlantGrowth (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                  + +
                                                                                                  + + + + + +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  + PlantIndividual.PlantGrowth Type +

                                                                                                  + +
                                                                                                  +
                                                                                                  +

                                                                                                  + +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  + Union cases +

                                                                                                  + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  + Union case + + Description +
                                                                                                  +
                                                                                                  + +

                                                                                                  + + + BasalArea GrowthSeries<MeasureProduct<MeasureProduct<mm, mm>, MeasureOne>> + + +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + Full Usage: + BasalArea GrowthSeries<MeasureProduct<MeasureProduct<mm, mm>, MeasureOne>> +
                                                                                                  +
                                                                                                  + Parameters: + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Item + + : + GrowthSeries<MeasureProduct<MeasureProduct<mm, mm>, MeasureOne>> +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +

                                                                                                  + + + RingWidth GrowthSeries<MeasureProduct<mm, MeasureOne>> + + +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + Full Usage: + RingWidth GrowthSeries<MeasureProduct<mm, MeasureOne>> +
                                                                                                  +
                                                                                                  + Parameters: + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Item + + : + GrowthSeries<MeasureProduct<mm, MeasureOne>> +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +
                                                                                                  + + Item + + : + GrowthSeries<MeasureProduct<MeasureProduct<mm, MeasureProduct<mm, mm>>, MeasureOne>> +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  +
                                                                                                    +

                                                                                                    Type something to start searching.

                                                                                                    +
                                                                                                    +
                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-plantindividual-plantindividual.html b/reference/bristlecone-dendro-plantindividual-plantindividual.html new file mode 100644 index 0000000..386d8e4 --- /dev/null +++ b/reference/bristlecone-dendro-plantindividual-plantindividual.html @@ -0,0 +1,545 @@ + + + + + + + + + + + + + + + + + + PlantIndividual (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                    + +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    + PlantIndividual.PlantIndividual Type +

                                                                                                    + +
                                                                                                    +
                                                                                                    +

                                                                                                    + +

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    + Record fields +

                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    + Record Field + + Description +
                                                                                                    +
                                                                                                    + +

                                                                                                    + + + Environment + + +

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + Full Usage: + Environment +
                                                                                                    +
                                                                                                    + + Field type: + LocalEnvironment + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + Field type: + + LocalEnvironment +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +

                                                                                                    + + + Growth + + +

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + Full Usage: + Growth +
                                                                                                    +
                                                                                                    + + Field type: + PlantGrowth + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + Field type: + + PlantGrowth +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +

                                                                                                    + + + Identifier + + +

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + Full Usage: + Identifier +
                                                                                                    +
                                                                                                    + + Field type: + ShortCode + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + Field type: + + ShortCode +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +

                                                                                                    + + + InternalControls + + +

                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + Full Usage: + InternalControls +
                                                                                                    +
                                                                                                    + + Field type: + Map<ShortCode, Trait> + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + Field type: + + Map<ShortCode, Trait> +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    +
                                                                                                      +

                                                                                                      Type something to start searching.

                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-plantindividual-trait.html b/reference/bristlecone-dendro-plantindividual-trait.html new file mode 100644 index 0000000..d2f1470 --- /dev/null +++ b/reference/bristlecone-dendro-plantindividual-trait.html @@ -0,0 +1,483 @@ + + + + + + + + + + + + + + + + + + Trait (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                      + +
                                                                                                      + + + + + +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                      +

                                                                                                      + PlantIndividual.Trait Type +

                                                                                                      + +
                                                                                                      +
                                                                                                      +

                                                                                                      + +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +

                                                                                                      + Union cases +

                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                      + Union case + + Description +
                                                                                                      +
                                                                                                      + +

                                                                                                      + + + Static float + + +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + Full Usage: + Static float +
                                                                                                      +
                                                                                                      + Parameters: +
                                                                                                        + + + Item + + : + float + +
                                                                                                        +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Item + + : + float +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + +

                                                                                                      + + + Variable TimeSeries<float> + + +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + Full Usage: + Variable TimeSeries<float> +
                                                                                                      +
                                                                                                      + Parameters: + +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Item + + : + TimeSeries<float> +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + +
                                                                                                      +
                                                                                                        +

                                                                                                        Type something to start searching.

                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-plantindividual.html b/reference/bristlecone-dendro-plantindividual.html new file mode 100644 index 0000000..b609eaf --- /dev/null +++ b/reference/bristlecone-dendro-plantindividual.html @@ -0,0 +1,1059 @@ + + + + + + + + + + + + + + + + + + PlantIndividual (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                        + +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + PlantIndividual Module +

                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + Types +

                                                                                                        + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        + Type + + Description +
                                                                                                        +

                                                                                                        + + + PlantGrowth + + +

                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + +

                                                                                                        + +

                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + + + PlantIndividual + + +

                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + +

                                                                                                        + +

                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + + + Trait + + +

                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + +

                                                                                                        + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + Functions and values +

                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        + Function or value + + Description +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.bound plant + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.bound plant +
                                                                                                        +
                                                                                                        + Parameters: + +
                                                                                                        + + Returns: + PlantIndividual + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + plant + + : + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.growthSeries plant + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.growthSeries plant +
                                                                                                        +
                                                                                                        + Parameters: + +
                                                                                                        + + Returns: + GrowthSeries<MeasureOne> + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + plant + + : + PlantGrowth +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + GrowthSeries<MeasureOne> +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.keepCommonYears plant + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.keepCommonYears plant +
                                                                                                        +
                                                                                                        + Parameters: + +
                                                                                                        + + Returns: + PlantIndividual + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Where a plant has associated environmental data, discard the beginning + or end of the growth and environment time-series where not all data + are present. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + plant + + : + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.removeUnit x + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.removeUnit x +
                                                                                                        +
                                                                                                        + Parameters: +
                                                                                                          + + + x + + : + float<'u> + +
                                                                                                          +
                                                                                                        +
                                                                                                        + + Returns: + float + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + x + + : + float<'u> +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + float +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.toCumulativeGrowth plant + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.toCumulativeGrowth plant +
                                                                                                        +
                                                                                                        + Parameters: + +
                                                                                                        + + Returns: + PlantIndividual + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + plant + + : + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.toRelativeGrowth plant + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.toRelativeGrowth plant +
                                                                                                        +
                                                                                                        + Parameters: + +
                                                                                                        + + Returns: + PlantIndividual + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + plant + + : + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.zipEnv envName envData plant + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.zipEnv envName envData plant +
                                                                                                        +
                                                                                                        + Parameters: + +
                                                                                                        + + Returns: + PlantIndividual + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + envName + + : + string +
                                                                                                        +
                                                                                                        +
                                                                                                        + + envData + + : + TimeSeries<float> +
                                                                                                        +
                                                                                                        +
                                                                                                        + + plant + + : + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + PlantIndividual +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        + + + PlantIndividual.zipEnvMany envName env plants + + +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + Full Usage: + PlantIndividual.zipEnvMany envName env plants +
                                                                                                        +
                                                                                                        + Parameters: +
                                                                                                          + + + envName + + : + string + +
                                                                                                          + + + env + + : + (string * TimeSeries<float>) seq + +
                                                                                                          + + + plants + + : + PlantIndividual seq + +
                                                                                                          +
                                                                                                        +
                                                                                                        + + Returns: + PlantIndividual seq + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Assigns local environmental conditions to each plant in a sequence, + given a sequence of environmental time-series where each time-series + has the code of the plant associated with it. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + envName + + : + string +
                                                                                                        +
                                                                                                        +
                                                                                                        + + env + + : + (string * TimeSeries<float>) seq +
                                                                                                        +
                                                                                                        +
                                                                                                        + + plants + + : + PlantIndividual seq +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + PlantIndividual seq +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                          +

                                                                                                          Type something to start searching.

                                                                                                          +
                                                                                                          +
                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-sunrise-daylength.html b/reference/bristlecone-dendro-sunrise-daylength.html new file mode 100644 index 0000000..cbbfb4f --- /dev/null +++ b/reference/bristlecone-dendro-sunrise-daylength.html @@ -0,0 +1,518 @@ + + + + + + + + + + + + + + + + + + DayLength (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                          + +
                                                                                                          + + + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          + DayLength Type +

                                                                                                          + +
                                                                                                          +
                                                                                                          +

                                                                                                          + +

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          + Union cases +

                                                                                                          + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          + Union case + + Description +
                                                                                                          +
                                                                                                          + +

                                                                                                          + + + CompleteDark + + +

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + Full Usage: + CompleteDark +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + +

                                                                                                          + +

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +

                                                                                                          + + + CompleteLight + + +

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + Full Usage: + CompleteLight +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + + +

                                                                                                          + +

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +

                                                                                                          + + + PartialLight(DateTimeOffset, DateTimeOffset) + + +

                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + Full Usage: + PartialLight(DateTimeOffset, DateTimeOffset) +
                                                                                                          +
                                                                                                          + Parameters: + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + Item1 + + : + DateTimeOffset +
                                                                                                          +
                                                                                                          +
                                                                                                          + + Item2 + + : + DateTimeOffset +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                            +

                                                                                                            Type something to start searching.

                                                                                                            +
                                                                                                            +
                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-sunrise-daylengthcache.html b/reference/bristlecone-dendro-sunrise-daylengthcache.html new file mode 100644 index 0000000..2c5156d --- /dev/null +++ b/reference/bristlecone-dendro-sunrise-daylengthcache.html @@ -0,0 +1,549 @@ + + + + + + + + + + + + + + + + + + DayLengthCache (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                            + +
                                                                                                            + + + + + +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                            +

                                                                                                            + DayLengthCache Type +

                                                                                                            + +
                                                                                                            +
                                                                                                            +

                                                                                                            + +

                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +

                                                                                                            + Constructors +

                                                                                                            + + + + + + + + + + + + + +
                                                                                                            + Constructor + + Description +
                                                                                                            +
                                                                                                            + +

                                                                                                            + + + DayLengthCache(latitude, longitude, timeZone) + + +

                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + Full Usage: + DayLengthCache(latitude, longitude, timeZone) +
                                                                                                            +
                                                                                                            + Parameters: +
                                                                                                              + + + latitude + + : + float + +
                                                                                                              + + + longitude + + : + float + +
                                                                                                              + + + timeZone + + : + string + +
                                                                                                              +
                                                                                                            +
                                                                                                            + + Returns: + DayLengthCache + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + latitude + + : + float +
                                                                                                            +
                                                                                                            +
                                                                                                            + + longitude + + : + float +
                                                                                                            +
                                                                                                            +
                                                                                                            + + timeZone + + : + string +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + Returns: + + DayLengthCache +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +

                                                                                                            + Instance members +

                                                                                                            + + + + + + + + + + + + + +
                                                                                                            + Instance member + + Description +
                                                                                                            +
                                                                                                            + +

                                                                                                            + + + this.GetLight + + +

                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + Full Usage: + this.GetLight +
                                                                                                            +
                                                                                                            + Parameters: + +
                                                                                                            + + Returns: + DayLength + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + date + + : + DateTime +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + Returns: + + DayLength +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            +
                                                                                                              +

                                                                                                              Type something to start searching.

                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-sunrise.html b/reference/bristlecone-dendro-sunrise.html new file mode 100644 index 0000000..4200760 --- /dev/null +++ b/reference/bristlecone-dendro-sunrise.html @@ -0,0 +1,1908 @@ + + + + + + + + + + + + + + + + + + Sunrise (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                              + +
                                                                                                              + + + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              + Sunrise Module +

                                                                                                              + +
                                                                                                              +
                                                                                                              +

                                                                                                              + The sunrise equation can be used to calculate the + time of sunrise and sunset for any latitude, longitude, + and date. + See: https://en.wikipedia.org/wiki/Sunrise_equation#Complete_calculation_on_Earth + Adapted from the SolarCalc by NOAA. + Source: https://dotnetfiddle.net/N3j5th +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              + Types +

                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                              + Type + + Description +
                                                                                                              +

                                                                                                              + + + DayLength + + +

                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + +

                                                                                                              + +

                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              + + + DayLengthCache + + +

                                                                                                              +
                                                                                                              +
                                                                                                              + + + + + +

                                                                                                              + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              + Functions and values +

                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              + Function or value + + Description +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + apparentLongitudeSun t1 t + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + apparentLongitudeSun t1 t +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + t1 + + : + float + +
                                                                                                                + + + t + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t1 + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + calculate year month day latitude longitude timeZoneId + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + calculate year month day latitude longitude timeZoneId +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + year + + : + int + +
                                                                                                                + + + month + + : + int + +
                                                                                                                + + + day + + : + int + +
                                                                                                                + + + latitude + + : + float + +
                                                                                                                + + + longitude + + : + float + +
                                                                                                                + + + timeZoneId + + : + string + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + DayLength + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + year + + : + int +
                                                                                                              +
                                                                                                              +
                                                                                                              + + month + + : + int +
                                                                                                              +
                                                                                                              +
                                                                                                              + + day + + : + int +
                                                                                                              +
                                                                                                              +
                                                                                                              + + latitude + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + longitude + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + timeZoneId + + : + string +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + DayLength +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + cosHourAngle declinationOfSun northLatitude + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + cosHourAngle declinationOfSun northLatitude +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + declinationOfSun + + : + float + +
                                                                                                                + + + northLatitude + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + declinationOfSun + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + northLatitude + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + dayFraction dayLength + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + dayFraction dayLength +
                                                                                                              +
                                                                                                              + Parameters: + +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + dayLength + + : + DayLength +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + declinationOfSun oc al + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + declinationOfSun oc al +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + oc + + : + float + +
                                                                                                                + + + al + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + oc + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + al + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + degrees radians + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + degrees radians +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + radians + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + radians + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + eccentricityEarthOrbit t + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + eccentricityEarthOrbit t +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + t + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + equationOfCentreSun ma t + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + equationOfCentreSun ma t +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + ma + + : + float + +
                                                                                                                + + + t + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + ma + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + equationOfTime oc ml eo ma + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + equationOfTime oc ml eo ma +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + oc + + : + float + +
                                                                                                                + + + ml + + : + float + +
                                                                                                                + + + eo + + : + float + +
                                                                                                                + + + ma + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + oc + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + ml + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + eo + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + ma + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + geomMeanAnomalySun t + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + geomMeanAnomalySun t +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + t + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + geomMeanLongitudeSun t + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + geomMeanLongitudeSun t +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + t + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + hourAngleSunrise lat d + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + hourAngleSunrise lat d +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + lat + + : + float + +
                                                                                                                + + + d + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + lat + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + d + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + meanObliquityOfEcliptic t + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + meanObliquityOfEcliptic t +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + t + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + obliquityCorrection oe t + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + obliquityCorrection oe t +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + oe + + : + float + +
                                                                                                                + + + t + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + oe + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + t + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + radians degrees + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + radians degrees +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + degrees + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + degrees + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + solarNoon lng eot tzoff + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + solarNoon lng eot tzoff +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + lng + + : + float + +
                                                                                                                + + + eot + + : + float + +
                                                                                                                + + + tzoff + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + lng + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + eot + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + tzoff + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + sunrise sn ha + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + sunrise sn ha +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + sn + + : + float + +
                                                                                                                + + + ha + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + sn + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + ha + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + sunset sn ha + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + sunset sn ha +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + sn + + : + float + +
                                                                                                                + + + ha + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + sn + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + ha + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              + + + trueLongitudeSun m1 eoc + + +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + Full Usage: + trueLongitudeSun m1 eoc +
                                                                                                              +
                                                                                                              + Parameters: +
                                                                                                                + + + m1 + + : + float + +
                                                                                                                + + + eoc + + : + float + +
                                                                                                                +
                                                                                                              +
                                                                                                              + + Returns: + float + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + m1 + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              + + eoc + + : + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + float +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              +
                                                                                                                +

                                                                                                                Type something to start searching.

                                                                                                                +
                                                                                                                +
                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro-year.html b/reference/bristlecone-dendro-year.html new file mode 100644 index 0000000..4b6deb4 --- /dev/null +++ b/reference/bristlecone-dendro-year.html @@ -0,0 +1,344 @@ + + + + + + + + + + + + + + + + + + year (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                + +
                                                                                                                + + + + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                + year Type +

                                                                                                                + +
                                                                                                                +
                                                                                                                +

                                                                                                                + +

                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                  +

                                                                                                                  Type something to start searching.

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-dendro.html b/reference/bristlecone-dendro.html new file mode 100644 index 0000000..2509e97 --- /dev/null +++ b/reference/bristlecone-dendro.html @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Dendro | bristlecone + + + + + + + + + + + + +
                                                                                                                  + +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + Bristlecone.Dendro Namespace +

                                                                                                                  +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  + Type/Module + + Description +
                                                                                                                  +

                                                                                                                  + + + EnvironmentalVariables + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + +

                                                                                                                  + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + + + JulianDate + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + +

                                                                                                                  + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + + + mm + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + +

                                                                                                                  + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + + + PlantIndividual + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + +

                                                                                                                  + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + + + Sunrise + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + +

                                                                                                                  + The sunrise equation can be used to calculate the + time of sunrise and sunset for any latitude, longitude, + and date. + See: https://en.wikipedia.org/wiki/Sunrise_equation#Complete_calculation_on_Earth + Adapted from the SolarCalc by NOAA. + Source: https://dotnetfiddle.net/N3j5th +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + + + year + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + + +

                                                                                                                  + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  +
                                                                                                                    +

                                                                                                                    Type something to start searching.

                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-diagnostics-convergence-convergencestatistic.html b/reference/bristlecone-diagnostics-convergence-convergencestatistic.html new file mode 100644 index 0000000..c672566 --- /dev/null +++ b/reference/bristlecone-diagnostics-convergence-convergencestatistic.html @@ -0,0 +1,584 @@ + + + + + + + + + + + + + + + + + + ConvergenceStatistic (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                    + +
                                                                                                                    + + + + + +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + ConvergenceStatistic Type +

                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + A per-parameter convergence statistic. The statistic used is given in `StatisticName`. +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + Record fields +

                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                    + Record Field + + Description +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    + + + HypothesisId + + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + Full Usage: + HypothesisId +
                                                                                                                    +
                                                                                                                    + + Field type: + string + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + Field type: + + string +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    + + + Parameter + + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + Full Usage: + Parameter +
                                                                                                                    +
                                                                                                                    + + Field type: + ShortCode + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + Field type: + + ShortCode +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    + + + StatisticName + + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + Full Usage: + StatisticName +
                                                                                                                    +
                                                                                                                    + + Field type: + string + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + Field type: + + string +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    + + + StatisticValue + + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + Full Usage: + StatisticValue +
                                                                                                                    +
                                                                                                                    + + Field type: + float + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + Field type: + + float +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    + + + Subject + + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + Full Usage: + Subject +
                                                                                                                    +
                                                                                                                    + + Field type: + string + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + Field type: + + string +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + +
                                                                                                                    +
                                                                                                                      +

                                                                                                                      Type something to start searching.

                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-diagnostics-convergence.html b/reference/bristlecone-diagnostics-convergence.html new file mode 100644 index 0000000..a132c1f --- /dev/null +++ b/reference/bristlecone-diagnostics-convergence.html @@ -0,0 +1,661 @@ + + + + + + + + + + + + + + + + + + Convergence (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                      + +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + Convergence Module +

                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + Convergence diagnostics for monte-carlo markov chain (MCMC) analyses. +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + Types +

                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                      + Type + + Description +
                                                                                                                      +

                                                                                                                      + + + ConvergenceStatistic + + +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + + +

                                                                                                                      + A per-parameter convergence statistic. The statistic used is given in `StatisticName`. +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + Functions and values +

                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                      + Function or value + + Description +
                                                                                                                      +
                                                                                                                      + +

                                                                                                                      + + + gelmanRubin n (arg2, arg3, arg4, arg5) + + +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + Full Usage: + gelmanRubin n (arg2, arg3, arg4, arg5) +
                                                                                                                      +
                                                                                                                      + Parameters: + +
                                                                                                                      + + Returns: + ConvergenceStatistic seq option + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + + + + + +

                                                                                                                      + Calculate the Gelman-Rubin statistic for each parameter in the given + `ResultSet`. The statistic tends downwards to one, with one indicating + perfect convergence between all chains. +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + n + + : + int +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + arg1 + + : + string +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + arg2 + + : + ModelSystem +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + arg3 + + : + string +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + arg4 + + : + (EstimationResult seq * EstimationResult) option +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + Returns: + + ConvergenceStatistic seq option +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +

                                                                                                                      + + + gelmanRubinAll n results + + +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + Full Usage: + gelmanRubinAll n results +
                                                                                                                      +
                                                                                                                      + Parameters: + +
                                                                                                                      + + Returns: + ConvergenceStatistic seq seq + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + + + + + +

                                                                                                                      + Calculate the Gelman-Rubin statistic for each parameter in all of the + given `ResultSet`. The statistic tends downwards to one, with one indicating + perfect convergence between all chains. +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + n + + : + int +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + results + + : + ResultSet<string, ModelSystem> list +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + Returns: + + ConvergenceStatistic seq seq +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + +
                                                                                                                      +
                                                                                                                        +

                                                                                                                        Type something to start searching.

                                                                                                                        +
                                                                                                                        +
                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-diagnostics-modelcomponents-componentlogger-1.html b/reference/bristlecone-diagnostics-modelcomponents-componentlogger-1.html new file mode 100644 index 0000000..45bf0cc --- /dev/null +++ b/reference/bristlecone-diagnostics-modelcomponents-componentlogger-1.html @@ -0,0 +1,421 @@ + + + + + + + + + + + + + + + + + + ComponentLogger<'data> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                        + +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + ComponentLogger<'data> Type +

                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + A component logger stores the value at each time t for each + component specified by a `componentId`. +

                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + Constructors +

                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                        + Constructor + + Description +
                                                                                                                        +
                                                                                                                        + +

                                                                                                                        + + + ComponentLogger() + + +

                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + Full Usage: + ComponentLogger() +
                                                                                                                        +
                                                                                                                        + + Returns: + ComponentLogger<'data> + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + + Returns: + + ComponentLogger<'data> +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                          +

                                                                                                                          Type something to start searching.

                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-diagnostics-modelcomponents-icomponentlogger-1.html b/reference/bristlecone-diagnostics-modelcomponents-icomponentlogger-1.html new file mode 100644 index 0000000..33b1c58 --- /dev/null +++ b/reference/bristlecone-diagnostics-modelcomponents-icomponentlogger-1.html @@ -0,0 +1,519 @@ + + + + + + + + + + + + + + + + + + IComponentLogger<'data> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                          + +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + IComponentLogger<'data> Type +

                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + +

                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + Instance members +

                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                          + Instance member + + Description +
                                                                                                                          +
                                                                                                                          + +

                                                                                                                          + + + this.GetAll + + +

                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + Full Usage: + this.GetAll +
                                                                                                                          +
                                                                                                                          + + Returns: + Map<string, Map<float, 'data>> + +
                                                                                                                          + Modifiers: + abstract +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + Returns: + + Map<string, Map<float, 'data>> +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +

                                                                                                                          + + + this.StoreValue + + +

                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + Full Usage: + this.StoreValue +
                                                                                                                          +
                                                                                                                          + Parameters: +
                                                                                                                            + + + arg0 + + : + string + +
                                                                                                                            + + + arg1 + + : + float + +
                                                                                                                            + + + arg2 + + : + 'data + +
                                                                                                                            +
                                                                                                                          +
                                                                                                                          + + Returns: + 'data + +
                                                                                                                          + Modifiers: + abstract +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + arg0 + + : + string +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + arg1 + + : + float +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + arg2 + + : + 'data +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + Returns: + + 'data +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + +
                                                                                                                          +
                                                                                                                            +

                                                                                                                            Type something to start searching.

                                                                                                                            +
                                                                                                                            +
                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-diagnostics-modelcomponents-passthrough-1.html b/reference/bristlecone-diagnostics-modelcomponents-passthrough-1.html new file mode 100644 index 0000000..4cef94d --- /dev/null +++ b/reference/bristlecone-diagnostics-modelcomponents-passthrough-1.html @@ -0,0 +1,420 @@ + + + + + + + + + + + + + + + + + + PassThrough<'data> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                            + +
                                                                                                                            + + + + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + PassThrough<'data> Type +

                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + A component logger that does not store any values. +

                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + Constructors +

                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                            + Constructor + + Description +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            + + + PassThrough() + + +

                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + Full Usage: + PassThrough() +
                                                                                                                            +
                                                                                                                            + + Returns: + PassThrough<'data> + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + + Returns: + + PassThrough<'data> +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                              +

                                                                                                                              Type something to start searching.

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-diagnostics-modelcomponents.html b/reference/bristlecone-diagnostics-modelcomponents.html new file mode 100644 index 0000000..7b66d90 --- /dev/null +++ b/reference/bristlecone-diagnostics-modelcomponents.html @@ -0,0 +1,634 @@ + + + + + + + + + + + + + + + + + + ModelComponents (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                              + +
                                                                                                                              + + + + + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + ModelComponents Module +

                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + Logging functions to output the internal dynamics of model systems. +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + Types +

                                                                                                                              + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                              + Type + + Description +
                                                                                                                              +

                                                                                                                              + + + ComponentLogger<'data> + + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + + + + +

                                                                                                                              + A component logger stores the value at each time t for each + component specified by a `componentId`. +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + + + IComponentLogger<'data> + + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + + + + +

                                                                                                                              + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + + + PassThrough<'data> + + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + + + + +

                                                                                                                              + A component logger that does not store any values. +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + Functions and values +

                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                              + Function or value + + Description +
                                                                                                                              +
                                                                                                                              + +

                                                                                                                              + + + calculateComponents fitFn engine (arg3, arg4, arg5, arg6) + + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + Full Usage: + calculateComponents fitFn engine (arg3, arg4, arg5, arg6) +
                                                                                                                              +
                                                                                                                              + Parameters: + +
                                                                                                                              + + Returns: + Map<string, Map<float, 'data>> + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + + + + + +

                                                                                                                              + Log out components specified in a model by disabling optimisation. + The model will only be computed once. +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + fitFn + + : + 'subject -> ModelSystem -> EstimationEngine<float, 'a> -> 'b +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + engine + + : + EstimationEngine<float, 'a> +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + arg2 + + : + 'subject +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + arg3 + + : + IComponentLogger<'data> -> ModelSystem +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + arg4 + + : + string +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + arg5 + + : + (EstimationResult seq * EstimationResult) option +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + Returns: + + Map<string, Map<float, 'data>> +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + +
                                                                                                                              +
                                                                                                                                +

                                                                                                                                Type something to start searching.

                                                                                                                                +
                                                                                                                                +
                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-diagnostics.html b/reference/bristlecone-diagnostics.html new file mode 100644 index 0000000..3d621eb --- /dev/null +++ b/reference/bristlecone-diagnostics.html @@ -0,0 +1,412 @@ + + + + + + + + + + + + + + + + + + Diagnostics (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                + +
                                                                                                                                + + + + + +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + Diagnostics Module +

                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                Diagnostic techniques for determining the suitability of
                                                                                                                                + results obtained with Bristlecone.
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + Nested modules +

                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                + Modules + + Description +
                                                                                                                                +

                                                                                                                                + + + Convergence + + +

                                                                                                                                +
                                                                                                                                +
                                                                                                                                + + + + + +

                                                                                                                                + Convergence diagnostics for monte-carlo markov chain (MCMC) analyses. +

                                                                                                                                +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + + + ModelComponents + + +

                                                                                                                                +
                                                                                                                                +
                                                                                                                                + + + + + +

                                                                                                                                + Logging functions to output the internal dynamics of model systems. +

                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + +
                                                                                                                                +
                                                                                                                                  +

                                                                                                                                  Type something to start searching.

                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-domain.html b/reference/bristlecone-estimationengine-domain.html new file mode 100644 index 0000000..d363723 --- /dev/null +++ b/reference/bristlecone-estimationengine-domain.html @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + Domain (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                  + +
                                                                                                                                  + + + + + +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + Domain Type +

                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + +

                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + + + +
                                                                                                                                  +
                                                                                                                                    +

                                                                                                                                    Type something to start searching.

                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-endcondition-1.html b/reference/bristlecone-estimationengine-endcondition-1.html new file mode 100644 index 0000000..a79fd9e --- /dev/null +++ b/reference/bristlecone-estimationengine-endcondition-1.html @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + EndCondition<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                    + +
                                                                                                                                    + + + + + +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    + EndCondition<'a> Type +

                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    + Determines if the end has been reached based on a list + of tupled Solutions with their iteration number. +

                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + + + +
                                                                                                                                    +
                                                                                                                                      +

                                                                                                                                      Type something to start searching.

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-estimationengine-2.html b/reference/bristlecone-estimationengine-estimationengine-2.html new file mode 100644 index 0000000..3c0e7d0 --- /dev/null +++ b/reference/bristlecone-estimationengine-estimationengine-2.html @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + EstimationEngine<'data, 'time> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                      + +
                                                                                                                                      + + + + + +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + EstimationEngine<'data, 'time> Type +

                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + Record fields +

                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                      + Record Field + + Description +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      + + + Conditioning + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + Full Usage: + Conditioning +
                                                                                                                                      +
                                                                                                                                      + + Field type: + Conditioning<'data> + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + Field type: + + Conditioning<'data> +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      + + + LogTo + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + Full Usage: + LogTo +
                                                                                                                                      +
                                                                                                                                      + + Field type: + WriteOut + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + Field type: + + WriteOut +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      + + + OptimiseWith + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + Full Usage: + OptimiseWith +
                                                                                                                                      +
                                                                                                                                      + + Field type: + Optimiser<'data> + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + Field type: + + Optimiser<'data> +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      + + + Random + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + Full Usage: + Random +
                                                                                                                                      +
                                                                                                                                      + + Field type: + Random + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + Field type: + + Random +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      + + + TimeHandling + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + Full Usage: + TimeHandling +
                                                                                                                                      +
                                                                                                                                      + + Field type: + TimeMode<'data, 'time> + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + Field type: + + TimeMode<'data, 'time> +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + +
                                                                                                                                      +
                                                                                                                                        +

                                                                                                                                        Type something to start searching.

                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-integrate-2.html b/reference/bristlecone-estimationengine-integrate-2.html new file mode 100644 index 0000000..17dad49 --- /dev/null +++ b/reference/bristlecone-estimationengine-integrate-2.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + Integrate<'data, 'time> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                        + +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + Integrate<'data, 'time> Type +

                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + +

                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + +
                                                                                                                                        +
                                                                                                                                          +

                                                                                                                                          Type something to start searching.

                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-objective-1.html b/reference/bristlecone-estimationengine-objective-1.html new file mode 100644 index 0000000..343bd46 --- /dev/null +++ b/reference/bristlecone-estimationengine-objective-1.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + Objective<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                          + +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + Objective<'a> Type +

                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + +

                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                            +

                                                                                                                                            Type something to start searching.

                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-ode.html b/reference/bristlecone-estimationengine-ode.html new file mode 100644 index 0000000..dcf1d40 --- /dev/null +++ b/reference/bristlecone-estimationengine-ode.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + ODE (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                            + +
                                                                                                                                            + + + + + +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + ODE Type +

                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + +

                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            +
                                                                                                                                              +

                                                                                                                                              Type something to start searching.

                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-optimise-1.html b/reference/bristlecone-estimationengine-optimise-1.html new file mode 100644 index 0000000..8a5cf21 --- /dev/null +++ b/reference/bristlecone-estimationengine-optimise-1.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + Optimise<'data> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                              + +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + Optimise<'data> Type +

                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + +

                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                                +

                                                                                                                                                Type something to start searching.

                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-optimiser-1.html b/reference/bristlecone-estimationengine-optimiser-1.html new file mode 100644 index 0000000..4065081 --- /dev/null +++ b/reference/bristlecone-estimationengine-optimiser-1.html @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + Optimiser<'data> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                + +
                                                                                                                                                + + + + + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + Optimiser<'data> Type +

                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + An `Optimiser` is an optimisation algorithm that may work either + in 'transformed' parameter space (where parameter constraints are + automatically handled) or in 'detatched' space (where the optimisation + algorithm is responsible for respecting parameter constraints). +

                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + Union cases +

                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                + Union case + + Description +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                + + + InDetachedSpace Optimise<'data> + + +

                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + Full Usage: + InDetachedSpace Optimise<'data> +
                                                                                                                                                +
                                                                                                                                                + Parameters: +
                                                                                                                                                  + + + Item + + : + Optimise<'data> + +
                                                                                                                                                  +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + + Item + + : + Optimise<'data> +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                + + + InTransformedSpace Optimise<'data> + + +

                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + Full Usage: + InTransformedSpace Optimise<'data> +
                                                                                                                                                +
                                                                                                                                                + Parameters: +
                                                                                                                                                  + + + Item + + : + Optimise<'data> + +
                                                                                                                                                  +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + + Item + + : + Optimise<'data> +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + +
                                                                                                                                                +
                                                                                                                                                  +

                                                                                                                                                  Type something to start searching.

                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-point-1.html b/reference/bristlecone-estimationengine-point-1.html new file mode 100644 index 0000000..2f2b2ab --- /dev/null +++ b/reference/bristlecone-estimationengine-point-1.html @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + Point<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                  + +
                                                                                                                                                  + + + + + +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  + Point<'a> Type +

                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  + Point is generic to allow choice of number precision +

                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + + + +
                                                                                                                                                  +
                                                                                                                                                    +

                                                                                                                                                    Type something to start searching.

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-state.html b/reference/bristlecone-estimationengine-state.html new file mode 100644 index 0000000..83c759a --- /dev/null +++ b/reference/bristlecone-estimationengine-state.html @@ -0,0 +1,368 @@ + + + + + + + + + + + + + + + + + + State (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                    + +
                                                                                                                                                    + + + + + +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    + State Type +

                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    + +

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + + + +
                                                                                                                                                    +
                                                                                                                                                      +

                                                                                                                                                      Type something to start searching.

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-time.html b/reference/bristlecone-estimationengine-time.html new file mode 100644 index 0000000..8f1398c --- /dev/null +++ b/reference/bristlecone-estimationengine-time.html @@ -0,0 +1,368 @@ + + + + + + + + + + + + + + + + + + Time (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + Time Type +

                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + +
                                                                                                                                                      +
                                                                                                                                                        +

                                                                                                                                                        Type something to start searching.

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-timemode-2.html b/reference/bristlecone-estimationengine-timemode-2.html new file mode 100644 index 0000000..20777ef --- /dev/null +++ b/reference/bristlecone-estimationengine-timemode-2.html @@ -0,0 +1,457 @@ + + + + + + + + + + + + + + + + + + TimeMode<'data, 'time> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                        + +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + TimeMode<'data, 'time> Type +

                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + +

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + Union cases +

                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                        + Union case + + Description +
                                                                                                                                                        +
                                                                                                                                                        + +

                                                                                                                                                        + + + Continuous Integrate<'data, 'time> + + +

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + Full Usage: + Continuous Integrate<'data, 'time> +
                                                                                                                                                        +
                                                                                                                                                        + Parameters: +
                                                                                                                                                          + + + Item + + : + Integrate<'data, 'time> + +
                                                                                                                                                          +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + + Item + + : + Integrate<'data, 'time> +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + +

                                                                                                                                                        + + + Discrete + + +

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + Full Usage: + Discrete +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + + + +

                                                                                                                                                        + +

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + +
                                                                                                                                                        +
                                                                                                                                                          +

                                                                                                                                                          Type something to start searching.

                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine-writeout.html b/reference/bristlecone-estimationengine-writeout.html new file mode 100644 index 0000000..22e7596 --- /dev/null +++ b/reference/bristlecone-estimationengine-writeout.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + WriteOut (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                          + +
                                                                                                                                                          + + + + + +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +

                                                                                                                                                          + WriteOut Type +

                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          +

                                                                                                                                                          + +

                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          + + + +
                                                                                                                                                          +
                                                                                                                                                            +

                                                                                                                                                            Type something to start searching.

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-estimationengine.html b/reference/bristlecone-estimationengine.html new file mode 100644 index 0000000..571de26 --- /dev/null +++ b/reference/bristlecone-estimationengine.html @@ -0,0 +1,714 @@ + + + + + + + + + + + + + + + + + + EstimationEngine (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                            + +
                                                                                                                                                            + + + + + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + EstimationEngine Module +

                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + Types +

                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                            + Type + + Description +
                                                                                                                                                            +

                                                                                                                                                            + + + Domain + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + EndCondition<'a> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + Determines if the end has been reached based on a list + of tupled Solutions with their iteration number. +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + EstimationEngine<'data, 'time> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + Integrate<'data, 'time> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + ODE + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + Objective<'a> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + Optimise<'data> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + Optimiser<'data> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + An `Optimiser` is an optimisation algorithm that may work either + in 'transformed' parameter space (where parameter constraints are + automatically handled) or in 'detatched' space (where the optimisation + algorithm is responsible for respecting parameter constraints). +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + Point<'a> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + Point is generic to allow choice of number precision +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + State + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + Time + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + TimeMode<'data, 'time> + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + + + WriteOut + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + +
                                                                                                                                                            +
                                                                                                                                                              +

                                                                                                                                                              Type something to start searching.

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-integration-base.html b/reference/bristlecone-integration-base.html new file mode 100644 index 0000000..4404660 --- /dev/null +++ b/reference/bristlecone-integration-base.html @@ -0,0 +1,854 @@ + + + + + + + + + + + + + + + + + + Base (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Base Module +

                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Module provides functions that 'wrap' a raw integration + routine into a form that can be used within Bristlecone. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Functions and values +

                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              + + + applyDynamicVariables newValues newValueKeys environment + + +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + Full Usage: + applyDynamicVariables newValues newValueKeys environment +
                                                                                                                                                              +
                                                                                                                                                              + Parameters: +
                                                                                                                                                                + + + newValues + + : + 'a[] + +
                                                                                                                                                                + + + newValueKeys + + : + 'b[] + +
                                                                                                                                                                + + + environment + + : + Map<'b, 'a> + +
                                                                                                                                                                +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + Map<'b, 'a> + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + newValues + + : + 'a[] +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + newValueKeys + + : + 'b[] +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + environment + + : + Map<'b, 'a> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Map<'b, 'a> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              + + + applyExternalEnvironment time externalEnv currentEnv + + +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + Full Usage: + applyExternalEnvironment time externalEnv currentEnv +
                                                                                                                                                              +
                                                                                                                                                              + Parameters: +
                                                                                                                                                                + + + time + + : + float + +
                                                                                                                                                                + + + externalEnv + + : + Map<'a, TimeIndex<'b>> + +
                                                                                                                                                                + + + currentEnv + + : + Map<'a, 'b> + +
                                                                                                                                                                +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + Map<'a, 'b> + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + time + + : + float +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + externalEnv + + : + Map<'a, TimeIndex<'b>> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + currentEnv + + : + Map<'a, 'b> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Map<'a, 'b> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              + + + nanResult tInitial tEnd tStep modelMap + + +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + Full Usage: + nanResult tInitial tEnd tStep modelMap +
                                                                                                                                                              +
                                                                                                                                                              + Parameters: +
                                                                                                                                                                + + + tInitial + + : + float + +
                                                                                                                                                                + + + tEnd + + : + float + +
                                                                                                                                                                + + + tStep + + : + float + +
                                                                                                                                                                + + + modelMap + + : + Map<'a, 'b> + +
                                                                                                                                                                +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + Map<'a, float[]> + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Generates a coded map of time-series where all values are NaN. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + tInitial + + : + float +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + tEnd + + : + float +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + tStep + + : + float +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + modelMap + + : + Map<'a, 'b> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Map<'a, float[]> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              + + + solve log integrate tInitial tEnd tStep initialConditions externalEnvironment modelMap + + +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + Full Usage: + solve log integrate tInitial tEnd tStep initialConditions externalEnvironment modelMap +
                                                                                                                                                              +
                                                                                                                                                              + Parameters: +
                                                                                                                                                                + + + log + + : + LogEvent -> unit + +
                                                                                                                                                                + + + integrate + + : + float -> 'b -> float -> 'c[] -> (float -> 'c[] -> 'd[]) -> float[][] + +
                                                                                                                                                                + + + tInitial + + : + float + +
                                                                                                                                                                + + + tEnd + + : + 'b + +
                                                                                                                                                                + + + tStep + + : + float + +
                                                                                                                                                                + + + initialConditions + + : + Map<'a, 'c> + +
                                                                                                                                                                + + + externalEnvironment + + : + Map<'a, TimeIndex<'c>> + +
                                                                                                                                                                + + + modelMap + + : + Map<'a, (float -> 'c -> Map<'a, 'c> -> 'd)> + +
                                                                                                                                                                +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + Map<'a, float[]> + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + log + + : + LogEvent -> unit +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + integrate + + : + float -> 'b -> float -> 'c[] -> (float -> 'c[] -> 'd[]) -> float[][] +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + tInitial + + : + float +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + tEnd + + : + 'b +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + tStep + + : + float +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + initialConditions + + : + Map<'a, 'c> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + externalEnvironment + + : + Map<'a, TimeIndex<'c>> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + modelMap + + : + Map<'a, (float -> 'c -> Map<'a, 'c> -> 'd)> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Map<'a, float[]> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + +
                                                                                                                                                              +
                                                                                                                                                                +

                                                                                                                                                                Type something to start searching.

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-integration-mathnet.html b/reference/bristlecone-integration-mathnet.html new file mode 100644 index 0000000..c9553d4 --- /dev/null +++ b/reference/bristlecone-integration-mathnet.html @@ -0,0 +1,649 @@ + + + + + + + + + + + + + + + + + + MathNet (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                + +
                                                                                                                                                                + + + + + +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + MathNet Module +

                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + +

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + Functions and values +

                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                +
                                                                                                                                                                + +

                                                                                                                                                                + + + integrate log tInitial tEnd tStep initialConditions externalEnvironment modelMap + + +

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + Full Usage: + integrate log tInitial tEnd tStep initialConditions externalEnvironment modelMap +
                                                                                                                                                                +
                                                                                                                                                                + Parameters: +
                                                                                                                                                                  + + + log + + : + LogEvent -> unit + +
                                                                                                                                                                  + + + tInitial + + : + float + +
                                                                                                                                                                  + + + tEnd + + : + float + +
                                                                                                                                                                  + + + tStep + + : + float + +
                                                                                                                                                                  + + + initialConditions + + : + Map<'a, float> + +
                                                                                                                                                                  + + + externalEnvironment + + : + Map<'a, TimeIndex<float>> + +
                                                                                                                                                                  + + + modelMap + + : + Map<'a, (float -> float -> Map<'a, float> -> float)> + +
                                                                                                                                                                  +
                                                                                                                                                                +
                                                                                                                                                                + + Returns: + Map<'a, float[]> + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + log + + : + LogEvent -> unit +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + tInitial + + : + float +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + tEnd + + : + float +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + tStep + + : + float +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + initialConditions + + : + Map<'a, float> +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + externalEnvironment + + : + Map<'a, TimeIndex<float>> +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + modelMap + + : + Map<'a, (float -> float -> Map<'a, float> -> float)> +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + Returns: + + Map<'a, float[]> +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + +

                                                                                                                                                                + + + integrate' tInitial tEnd tStep initialVector rp + + +

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + Full Usage: + integrate' tInitial tEnd tStep initialVector rp +
                                                                                                                                                                +
                                                                                                                                                                + Parameters: +
                                                                                                                                                                  + + + tInitial + + : + float + +
                                                                                                                                                                  + + + tEnd + + : + float + +
                                                                                                                                                                  + + + tStep + + : + float + +
                                                                                                                                                                  + + + initialVector + + : + float seq + +
                                                                                                                                                                  + + + rp + + : + float -> float[] -> 'a + +
                                                                                                                                                                  +
                                                                                                                                                                +
                                                                                                                                                                + + Returns: + float[][] + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + tInitial + + : + float +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + tEnd + + : + float +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + tStep + + : + float +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + initialVector + + : + float seq +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + rp + + : + float -> float[] -> 'a +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + Returns: + + float[][] +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + +
                                                                                                                                                                +
                                                                                                                                                                  +

                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-integration-oslo-options.html b/reference/bristlecone-integration-oslo-options.html new file mode 100644 index 0000000..0af7171 --- /dev/null +++ b/reference/bristlecone-integration-oslo-options.html @@ -0,0 +1,489 @@ + + + + + + + + + + + + + + + + + + Options (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + Options Module +

                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + Functions and values +

                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                  +
                                                                                                                                                                  + +

                                                                                                                                                                  + + + custom absTol relTol + + +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + Full Usage: + custom absTol relTol +
                                                                                                                                                                  +
                                                                                                                                                                  + Parameters: +
                                                                                                                                                                    + + + absTol + + : + float + +
                                                                                                                                                                    + + + relTol + + : + float + +
                                                                                                                                                                    +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + Options + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + absTol + + : + float +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + relTol + + : + float +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + Options +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + +

                                                                                                                                                                  + + + defaultOptions + + +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + Full Usage: + defaultOptions +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + Options + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + Options +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + +
                                                                                                                                                                  +
                                                                                                                                                                    +

                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-integration-oslo.html b/reference/bristlecone-integration-oslo.html new file mode 100644 index 0000000..af066b7 --- /dev/null +++ b/reference/bristlecone-integration-oslo.html @@ -0,0 +1,902 @@ + + + + + + + + + + + + + + + + + + Oslo (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + Oslo Module +

                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + Oslo is an integration library provided by Microsoft Research Cambridge. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + Nested modules +

                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                    + Modules + + Description +
                                                                                                                                                                    +

                                                                                                                                                                    + + + Options + + +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + Functions and values +

                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                    +
                                                                                                                                                                    + +

                                                                                                                                                                    + + + integrate options log tInitial tEnd tStep initialConditions modelMap + + +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + Full Usage: + integrate options log tInitial tEnd tStep initialConditions modelMap +
                                                                                                                                                                    +
                                                                                                                                                                    + Parameters: +
                                                                                                                                                                      + + + options + + : + Options + +
                                                                                                                                                                      + + + log + + : + LogEvent -> unit + +
                                                                                                                                                                      + + + tInitial + + : + float + +
                                                                                                                                                                      + + + tEnd + + : + float + +
                                                                                                                                                                      + + + tStep + + : + float + +
                                                                                                                                                                      + + + initialConditions + + : + Map<'a, float> + +
                                                                                                                                                                      + + + modelMap + + : + Map<'a, TimeIndex<float>> + +
                                                                                                                                                                      +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + Map<'a, (float -> float -> Map<'a, float> -> float)> -> Map<'a, float[]> + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + options + + : + Options +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + log + + : + LogEvent -> unit +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tInitial + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tEnd + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tStep + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + initialConditions + + : + Map<'a, float> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + modelMap + + : + Map<'a, TimeIndex<float>> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Map<'a, (float -> float -> Map<'a, float> -> float)> -> Map<'a, float[]> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + +

                                                                                                                                                                    + + + integrate' options tInitial tEnd tStep initialVector rp + + +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + Full Usage: + integrate' options tInitial tEnd tStep initialVector rp +
                                                                                                                                                                    +
                                                                                                                                                                    + Parameters: +
                                                                                                                                                                      + + + options + + : + Options + +
                                                                                                                                                                      + + + tInitial + + : + float + +
                                                                                                                                                                      + + + tEnd + + : + float + +
                                                                                                                                                                      + + + tStep + + : + float + +
                                                                                                                                                                      + + + initialVector + + : + float[] + +
                                                                                                                                                                      + + + rp + + : + double -> float[] -> float[] + +
                                                                                                                                                                      +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + float[][] + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + options + + : + Options +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tInitial + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tEnd + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tStep + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + initialVector + + : + float[] +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + rp + + : + double -> float[] -> float[] +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + float[][] +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + +

                                                                                                                                                                    + + + integrateWithErrorHandling options log tInitial tEnd tStep initialConditions externalEnvironment modelMap + + +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + Full Usage: + integrateWithErrorHandling options log tInitial tEnd tStep initialConditions externalEnvironment modelMap +
                                                                                                                                                                    +
                                                                                                                                                                    + Parameters: +
                                                                                                                                                                      + + + options + + : + Options + +
                                                                                                                                                                      + + + log + + : + LogEvent -> unit + +
                                                                                                                                                                      + + + tInitial + + : + float + +
                                                                                                                                                                      + + + tEnd + + : + float + +
                                                                                                                                                                      + + + tStep + + : + float + +
                                                                                                                                                                      + + + initialConditions + + : + Map<'a, float> + +
                                                                                                                                                                      + + + externalEnvironment + + : + Map<'a, TimeIndex<float>> + +
                                                                                                                                                                      + + + modelMap + + : + Map<'a, (float -> float -> Map<'a, float> -> float)> + +
                                                                                                                                                                      +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + Map<'a, float[]> + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + On integration errors, assigns the maximum float value to every data point. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + options + + : + Options +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + log + + : + LogEvent -> unit +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tInitial + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tEnd + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + tStep + + : + float +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + initialConditions + + : + Map<'a, float> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + externalEnvironment + + : + Map<'a, TimeIndex<float>> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + modelMap + + : + Map<'a, (float -> float -> Map<'a, float> -> float)> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Map<'a, float[]> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + +
                                                                                                                                                                    +
                                                                                                                                                                      +

                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-integration-simple.html b/reference/bristlecone-integration-simple.html new file mode 100644 index 0000000..268dd88 --- /dev/null +++ b/reference/bristlecone-integration-simple.html @@ -0,0 +1,1228 @@ + + + + + + + + + + + + + + + + + + Simple (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + Simple Module +

                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + Functions and values +

                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                      +
                                                                                                                                                                      + +

                                                                                                                                                                      + + + rungeKutta4Variable currentStep steps t x f tt xx + + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + Full Usage: + rungeKutta4Variable currentStep steps t x f tt xx +
                                                                                                                                                                      +
                                                                                                                                                                      + Parameters: +
                                                                                                                                                                        + + + currentStep + + : + float + +
                                                                                                                                                                        + + + steps + + : + float list + +
                                                                                                                                                                        + + + t + + : + float + +
                                                                                                                                                                        + + + x + + : + float + +
                                                                                                                                                                        + + + f + + : + float -> float -> float + +
                                                                                                                                                                        + + + tt + + : + float list + +
                                                                                                                                                                        + + + xx + + : + float list + +
                                                                                                                                                                        +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + float list * float list + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + 4th order runge-kutta solver that can handle (in very basic form) variable time, for example when using sedimentary age-depth models. + It is for a single-equation, 1st order system. +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + currentStep + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + steps + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + t + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + x + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + f + + : + float -> float -> float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + tt + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + xx + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + float list * float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +

                                                                                                                                                                      + + + rungekutta4 x y h n f xx yy + + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + Full Usage: + rungekutta4 x y h n f xx yy +
                                                                                                                                                                      +
                                                                                                                                                                      + Parameters: +
                                                                                                                                                                        + + + x + + : + float + +
                                                                                                                                                                        + + + y + + : + float + +
                                                                                                                                                                        + + + h + + : + float + +
                                                                                                                                                                        + + + n + + : + float + +
                                                                                                                                                                        + + + f + + : + float -> float -> float + +
                                                                                                                                                                        + + + xx + + : + float list + +
                                                                                                                                                                        + + + yy + + : + float list + +
                                                                                                                                                                        +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + float list * float list + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Fourth order runge-kutta solver +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + x + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + y + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + h + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + n + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + f + + : + float -> float -> float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + xx + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + yy + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + float list * float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +

                                                                                                                                                                      + + + rungekutta4' x y h f + + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + Full Usage: + rungekutta4' x y h f +
                                                                                                                                                                      +
                                                                                                                                                                      + Parameters: +
                                                                                                                                                                        + + + x + + : + float + +
                                                                                                                                                                        + + + y + + : + float + +
                                                                                                                                                                        + + + h + + : + float + +
                                                                                                                                                                        + + + f + + : + float -> float -> float + +
                                                                                                                                                                        +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Fourth order runge-kutta algorithm calculations +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + x + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + y + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + h + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + f + + : + float -> float -> float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +

                                                                                                                                                                      + + + rungekutta4dual t x y h n f g tt xx yy + + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + Full Usage: + rungekutta4dual t x y h n f g tt xx yy +
                                                                                                                                                                      +
                                                                                                                                                                      + Parameters: +
                                                                                                                                                                        + + + t + + : + float + +
                                                                                                                                                                        + + + x + + : + float + +
                                                                                                                                                                        + + + y + + : + float + +
                                                                                                                                                                        + + + h + + : + float + +
                                                                                                                                                                        + + + n + + : + float + +
                                                                                                                                                                        + + + f + + : + float -> float -> float -> float + +
                                                                                                                                                                        + + + g + + : + float -> float -> float -> float + +
                                                                                                                                                                        + + + tt + + : + float list + +
                                                                                                                                                                        + + + xx + + : + float list + +
                                                                                                                                                                        + + + yy + + : + float list + +
                                                                                                                                                                        +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + float list * float list * float list + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Fourth order runge-kutta solver for a 2 equation, 1st order system +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + t + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + x + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + y + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + h + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + n + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + f + + : + float -> float -> float -> float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + g + + : + float -> float -> float -> float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + tt + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + xx + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + yy + + : + float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + float list * float list * float list +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +

                                                                                                                                                                      + + + rungekutta4dual' t x y h f g + + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + Full Usage: + rungekutta4dual' t x y h f g +
                                                                                                                                                                      +
                                                                                                                                                                      + Parameters: +
                                                                                                                                                                        + + + t + + : + float + +
                                                                                                                                                                        + + + x + + : + float + +
                                                                                                                                                                        + + + y + + : + float + +
                                                                                                                                                                        + + + h + + : + float + +
                                                                                                                                                                        + + + f + + : + float -> float -> float -> float + +
                                                                                                                                                                        + + + g + + : + float -> float -> float -> float + +
                                                                                                                                                                        +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + float * float + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Fourth order runge-kutta algorithm for a 2 equation, 1st order system. + Adapted from: https://www.calvin.edu/~scofield/courses/m231/materials/rungeKuttaFormulas.pdf +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + t + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + x + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + y + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + h + + : + float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + f + + : + float -> float -> float -> float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + g + + : + float -> float -> float -> float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + float * float +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + +
                                                                                                                                                                      +
                                                                                                                                                                        +

                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-integration.html b/reference/bristlecone-integration.html new file mode 100644 index 0000000..d941dbe --- /dev/null +++ b/reference/bristlecone-integration.html @@ -0,0 +1,446 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Integration | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + Bristlecone.Integration Namespace +

                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                        + Modules + + Description +
                                                                                                                                                                        +

                                                                                                                                                                        + + + Base + + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Module provides functions that 'wrap' a raw integration + routine into a form that can be used within Bristlecone. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + + + MathNet + + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + + + Oslo + + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Oslo is an integration library provided by Microsoft Research Cambridge. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + + + Simple + + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + +
                                                                                                                                                                        +
                                                                                                                                                                          +

                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-arbitraryrequirement.html b/reference/bristlecone-language-arbitraryrequirement.html new file mode 100644 index 0000000..59c2f55 --- /dev/null +++ b/reference/bristlecone-language-arbitraryrequirement.html @@ -0,0 +1,483 @@ + + + + + + + + + + + + + + + + + + ArbitraryRequirement (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + ArbitraryRequirement Type +

                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + Union cases +

                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                          + Union case + + Description +
                                                                                                                                                                          +
                                                                                                                                                                          + +

                                                                                                                                                                          + + + ArbitraryEnvironment string + + +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + Full Usage: + ArbitraryEnvironment string +
                                                                                                                                                                          +
                                                                                                                                                                          + Parameters: +
                                                                                                                                                                            + + + Item + + : + string + +
                                                                                                                                                                            +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Item + + : + string +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + +

                                                                                                                                                                          + + + ArbitraryParameter string + + +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + Full Usage: + ArbitraryParameter string +
                                                                                                                                                                          +
                                                                                                                                                                          + Parameters: +
                                                                                                                                                                            + + + Item + + : + string + +
                                                                                                                                                                            +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Item + + : + string +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + +
                                                                                                                                                                          +
                                                                                                                                                                            +

                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-computablefragment-computablefragment.html b/reference/bristlecone-language-computablefragment-computablefragment.html new file mode 100644 index 0000000..c2de529 --- /dev/null +++ b/reference/bristlecone-language-computablefragment-computablefragment.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + ComputableFragment (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + ComputableFragment Type +

                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + +
                                                                                                                                                                            +
                                                                                                                                                                              +

                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-computablefragment-compute.html b/reference/bristlecone-language-computablefragment-compute.html new file mode 100644 index 0000000..c806470 --- /dev/null +++ b/reference/bristlecone-language-computablefragment-compute.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + Compute (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + Compute Type +

                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + +
                                                                                                                                                                              +
                                                                                                                                                                                +

                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-computablefragment.html b/reference/bristlecone-language-computablefragment.html new file mode 100644 index 0000000..baf69f1 --- /dev/null +++ b/reference/bristlecone-language-computablefragment.html @@ -0,0 +1,697 @@ + + + + + + + + + + + + + + + + + + ComputableFragment (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + ComputableFragment Module +

                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + Allows common F# functions to use Bristlecone model expressions. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + Types +

                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                + Type + + Description +
                                                                                                                                                                                +

                                                                                                                                                                                + + + ComputableFragment + + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + + + Compute + + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                +
                                                                                                                                                                                + +

                                                                                                                                                                                + + + apply ex fn + + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + Full Usage: + apply ex fn +
                                                                                                                                                                                +
                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                + + Returns: + Writer<(float -> float -> Pool -> CodedMap<float> -> 'a), ModelExpression> + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Apply a Bristlecone model expression to a custom arbitrary function. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + ex + + : + ModelExpression +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + fn + + : + float -> 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + Writer<(float -> float -> Pool -> CodedMap<float> -> 'a), ModelExpression> +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +

                                                                                                                                                                                + + + applyAgain ex fn + + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + Full Usage: + applyAgain ex fn +
                                                                                                                                                                                +
                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                + + Returns: + Writer<(float -> float -> Pool -> CodedMap<float> -> 'a), ModelExpression> + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Apply additional parameters as Bristlecone expressions to an arbitrary function. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + ex + + : + ModelExpression +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + fn + + : + Writer<(float -> float -> Pool -> CodedMap<float> -> float -> 'a), ModelExpression> +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + Writer<(float -> float -> Pool -> CodedMap<float> -> 'a), ModelExpression> +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +

                                                                                                                                                                                + + + asBristleconeFunction fragment + + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + Full Usage: + asBristleconeFunction fragment +
                                                                                                                                                                                +
                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                + + Returns: + ModelExpression + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + fragment + + : + Writer<(float -> float -> Pool -> CodedMap<float> -> float), ArbitraryRequirement> +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + ModelExpression +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + +
                                                                                                                                                                                +
                                                                                                                                                                                  +

                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-expressionparser-requirement.html b/reference/bristlecone-language-expressionparser-requirement.html new file mode 100644 index 0000000..b7be173 --- /dev/null +++ b/reference/bristlecone-language-expressionparser-requirement.html @@ -0,0 +1,483 @@ + + + + + + + + + + + + + + + + + + Requirement (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + Requirement Type +

                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + Union cases +

                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                  + Union case + + Description +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +

                                                                                                                                                                                  + + + EnvironmentRequirement string + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + Full Usage: + EnvironmentRequirement string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                    + + + Item + + : + string + +
                                                                                                                                                                                    +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + Item + + : + string +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +

                                                                                                                                                                                  + + + ParameterRequirement string + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + Full Usage: + ParameterRequirement string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                    + + + Item + + : + string + +
                                                                                                                                                                                    +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + Item + + : + string +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                    +

                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-expressionparser.html b/reference/bristlecone-language-expressionparser.html new file mode 100644 index 0000000..3879e2c --- /dev/null +++ b/reference/bristlecone-language-expressionparser.html @@ -0,0 +1,514 @@ + + + + + + + + + + + + + + + + + + ExpressionParser (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    + ExpressionParser Module +

                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    + +

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    + Types +

                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                    + Type + + Description +
                                                                                                                                                                                    +

                                                                                                                                                                                    + + + Requirement + + +

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                    + +

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +

                                                                                                                                                                                    + + + requirements ex reqs + + +

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + Full Usage: + requirements ex reqs +
                                                                                                                                                                                    +
                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                    + + Returns: + Requirement list + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                    + Determines the parameter and environmental data requirements of the defined model expression. +

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + ex + + : + ModelExpression +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + reqs + + : + Requirement list +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + Returns: + + Requirement list +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                      +

                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-hypotheses-componentname.html b/reference/bristlecone-language-hypotheses-componentname.html new file mode 100644 index 0000000..3d598f1 --- /dev/null +++ b/reference/bristlecone-language-hypotheses-componentname.html @@ -0,0 +1,524 @@ + + + + + + + + + + + + + + + + + + ComponentName (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + ComponentName Type +

                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + Record fields +

                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      + Record Field + + Description +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +

                                                                                                                                                                                      + + + Component + + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + Full Usage: + Component +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + Field type: + string + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + Field type: + + string +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +

                                                                                                                                                                                      + + + Implementation + + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + Full Usage: + Implementation +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + Field type: + string + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + Field type: + + string +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + Instance members +

                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                      + Instance member + + Description +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +

                                                                                                                                                                                      + + + this.Reference + + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + Full Usage: + this.Reference +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + Returns: + string + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + Returns: + + string +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                        +

                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-hypotheses.html b/reference/bristlecone-language-hypotheses.html new file mode 100644 index 0000000..beed878 --- /dev/null +++ b/reference/bristlecone-language-hypotheses.html @@ -0,0 +1,818 @@ + + + + + + + + + + + + + + + + + + Hypotheses (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + Hypotheses Module +

                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + Types +

                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                        + Type + + Description +
                                                                                                                                                                                        +

                                                                                                                                                                                        + + + ComponentName + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                        + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + Functions and values +

                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                        + Function or value + + Description +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +

                                                                                                                                                                                        + + + compile x + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Full Usage: + compile x +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                        + + Returns: + (ModelSystem * ComponentName list) list + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                        + Compiles a suite of competing model hypotheses based on the given components. + The compilation includes only the required parameters in each model hypothesis, + and combines all labels into a single model identifier. +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + x + + : + Writer<ModelBuilder, (ComponentName * CodedMap<Parameter>)> list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + Returns: + + (ModelSystem * ComponentName list) list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +

                                                                                                                                                                                        + + + createFromComponent (arg1, arg2) x + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Full Usage: + createFromComponent (arg1, arg2) x +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                        + + Returns: + Writer<'b, (ComponentName * CodedMap<Parameter>)> list + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                        + Implement a component where a model system requires one. A component is + a part of a model that may be varied, for example between competing + hypotheses. +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + arg0 + + : + string +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + arg1 + + : + (string * PluggableComponent<'a>) list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + x + + : + ('a -> ModelExpression) -> 'b +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + Returns: + + Writer<'b, (ComponentName * CodedMap<Parameter>)> list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +

                                                                                                                                                                                        + + + useAnother (arg1, arg2) x + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Full Usage: + useAnother (arg1, arg2) x +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                        + + Returns: + Writer<'b, (ComponentName * CodedMap<Parameter>)> list + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                        + Implement a second or further component on a model system where one is + still required. +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + arg0 + + : + string +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + arg1 + + : + (string * PluggableComponent<'a>) list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + x + + : + Writer<(('a -> ModelExpression) -> 'b), (ComponentName * CodedMap<Parameter>)> list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + Returns: + + Writer<'b, (ComponentName * CodedMap<Parameter>)> list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +

                                                                                                                                                                                        + + + useAnotherWithName (arg1, arg2) x + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Full Usage: + useAnotherWithName (arg1, arg2) x +
                                                                                                                                                                                        +
                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                        + + Returns: + Writer<'b, (ComponentName * CodedMap<Parameter>)> list + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + arg0 + + : + string +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + arg1 + + : + (string * PluggableComponent<'a>) list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + x + + : + Writer<(string * ('a -> ModelExpression) -> 'b), (ComponentName * CodedMap<Parameter>)> list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + Returns: + + Writer<'b, (ComponentName * CodedMap<Parameter>)> list +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                          +

                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-model.html b/reference/bristlecone-language-model.html new file mode 100644 index 0000000..98bd664 --- /dev/null +++ b/reference/bristlecone-language-model.html @@ -0,0 +1,839 @@ + + + + + + + + + + + + + + + + + + Model (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + Model Module +

                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + Terms for scaffolding a model system for use with Bristlecone. +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          + + + addEquation name eq builder + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Full Usage: + addEquation name eq builder +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                          + + Returns: + ModelBuilder + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + name + + : + string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + eq + + : + ModelExpression +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + builder + + : + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          + + + compile + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Full Usage: + compile +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + ModelBuilder -> ModelSystem + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + + ModelBuilder -> ModelSystem +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          + + + empty + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Full Usage: + empty +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + ModelBuilder + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          + + + estimateParameter name constraintMode lower upper builder + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Full Usage: + estimateParameter name constraintMode lower upper builder +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                            + + + name + + : + string + +
                                                                                                                                                                                            + + + constraintMode + + : + Constraint + +
                                                                                                                                                                                            + + + lower + + : + float + +
                                                                                                                                                                                            + + + upper + + : + float + +
                                                                                                                                                                                            + + + builder + + : + ModelBuilder + +
                                                                                                                                                                                            +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + ModelBuilder + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + name + + : + string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + constraintMode + + : + Constraint +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + lower + + : + float +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + upper + + : + float +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + builder + + : + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          + + + includeMeasure name measure builder + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Full Usage: + includeMeasure name measure builder +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                          + + Returns: + ModelBuilder + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + name + + : + string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + measure + + : + MeasureEquation +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + builder + + : + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          + + + useLikelihoodFunction likelihoodFn builder + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Full Usage: + useLikelihoodFunction likelihoodFn builder +
                                                                                                                                                                                          +
                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                          + + Returns: + ModelBuilder + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + likelihoodFn + + : + LikelihoodFn +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + builder + + : + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + Returns: + + ModelBuilder +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                            +

                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-modelbuilder-modelbuilder.html b/reference/bristlecone-language-modelbuilder-modelbuilder.html new file mode 100644 index 0000000..b901900 --- /dev/null +++ b/reference/bristlecone-language-modelbuilder-modelbuilder.html @@ -0,0 +1,350 @@ + + + + + + + + + + + + + + + + + + ModelBuilder (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + ModelBuilder Type +

                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + +

                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                              +

                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-modelbuilder-modelfragment.html b/reference/bristlecone-language-modelbuilder-modelfragment.html new file mode 100644 index 0000000..d26e674 --- /dev/null +++ b/reference/bristlecone-language-modelbuilder-modelfragment.html @@ -0,0 +1,565 @@ + + + + + + + + + + + + + + + + + + ModelFragment (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + ModelFragment Type +

                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + +

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + Union cases +

                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                              + Union case + + Description +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              + + + EquationFragment ModelExpression + + +

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Full Usage: + EquationFragment ModelExpression +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + Item + + : + ModelExpression +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              + + + LikelihoodFragment LikelihoodFn + + +

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Full Usage: + LikelihoodFragment LikelihoodFn +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + Item + + : + LikelihoodFn +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              + + + MeasureFragment MeasureEquation + + +

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Full Usage: + MeasureFragment MeasureEquation +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + Item + + : + MeasureEquation +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              + + + ParameterFragment Parameter + + +

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Full Usage: + ParameterFragment Parameter +
                                                                                                                                                                                              +
                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + Item + + : + Parameter +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                                +

                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-modelbuilder.html b/reference/bristlecone-language-modelbuilder.html new file mode 100644 index 0000000..fd9ddaf --- /dev/null +++ b/reference/bristlecone-language-modelbuilder.html @@ -0,0 +1,639 @@ + + + + + + + + + + + + + + + + + + ModelBuilder (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + ModelBuilder Module +

                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + Scaffolds a `ModelSystem` for fitting with Bristlecone. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + Types +

                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                + Type + + Description +
                                                                                                                                                                                                +

                                                                                                                                                                                                + + + ModelBuilder + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + + + ModelFragment + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +

                                                                                                                                                                                                + + + add name comp builder + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + Full Usage: + add name comp builder +
                                                                                                                                                                                                +
                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                + + Returns: + ModelBuilder + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + name + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + comp + + : + ModelFragment +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + builder + + : + ModelBuilder +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + ModelBuilder +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +

                                                                                                                                                                                                + + + compile builder + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + Full Usage: + compile builder +
                                                                                                                                                                                                +
                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                + + Returns: + ModelSystem + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + builder + + : + ModelBuilder +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + ModelSystem +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +

                                                                                                                                                                                                + + + create + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + Full Usage: + create +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + ModelBuilder + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + ModelBuilder +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-modelexpression.html b/reference/bristlecone-language-modelexpression.html new file mode 100644 index 0000000..3a2988e --- /dev/null +++ b/reference/bristlecone-language-modelexpression.html @@ -0,0 +1,1615 @@ + + + + + + + + + + + + + + + + + + ModelExpression (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  + ModelExpression Type +

                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  + A model or model fragment that can be interpreted to a mathematical + expression by Bristlecone. +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  + Union cases +

                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                  + Union case + + Description +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Add ModelExpression list + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Add ModelExpression list +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item + + : + ModelExpression list +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Arbitrary(float -> float -> Pool -> CodedMap<float> -> float, ArbitraryRequirement list) + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Arbitrary(float -> float -> Pool -> CodedMap<float> -> float, ArbitraryRequirement list) +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item1 + + : + float -> float -> Pool -> CodedMap<float> -> float +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item2 + + : + ArbitraryRequirement list +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Conditional (ModelExpression -> float) -> ModelExpression + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Conditional (ModelExpression -> float) -> ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item + + : + (ModelExpression -> float) -> ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Constant float + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Constant float +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                    + + + Item + + : + float + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item + + : + float +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Divide(ModelExpression, ModelExpression) + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Divide(ModelExpression, ModelExpression) +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Environment string + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Environment string +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                    + + + Item + + : + string + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item + + : + string +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Exponent(ModelExpression, ModelExpression) + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Exponent(ModelExpression, ModelExpression) +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Invalid + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Invalid +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                  + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Mod(ModelExpression, ModelExpression) + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Mod(ModelExpression, ModelExpression) +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Multiply ModelExpression list + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Multiply ModelExpression list +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item + + : + ModelExpression list +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Parameter string + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Parameter string +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                    + + + Item + + : + string + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item + + : + string +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Subtract(ModelExpression, ModelExpression) + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Subtract(ModelExpression, ModelExpression) +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Item2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + This + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + This +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                  + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + Time + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + Time +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                  + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  + Static members +

                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                  + Static member + + Description +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + e1 % remainder + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + e1 % remainder +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  + + Returns: + ModelExpression + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + remainder + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + e1 * e2 + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + e1 * e2 +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  + + Returns: + ModelExpression + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + e1 + e2 + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + e1 + e2 +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  + + Returns: + ModelExpression + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + e1 - e2 + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + e1 - e2 +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  + + Returns: + ModelExpression + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + e1 / e2 + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + e1 / e2 +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  + + Returns: + ModelExpression + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e2 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + ~-e + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + ~-e +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  + + Returns: + ModelExpression + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  + + + ModelExpression.Pow(e1, pow) + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Full Usage: + ModelExpression.Pow(e1, pow) +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                  + + Returns: + ModelExpression + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + e1 + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + pow + + : + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + ModelExpression +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-pluggablecomponent-1.html b/reference/bristlecone-language-pluggablecomponent-1.html new file mode 100644 index 0000000..ae08228 --- /dev/null +++ b/reference/bristlecone-language-pluggablecomponent-1.html @@ -0,0 +1,455 @@ + + + + + + + + + + + + + + + + + + PluggableComponent<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    + PluggableComponent<'a> Type +

                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    + +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    + Record fields +

                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                    + Record Field + + Description +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +

                                                                                                                                                                                                    + + + Expression + + +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + Full Usage: + Expression +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Field type: + 'a -> ModelExpression + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Field type: + + 'a -> ModelExpression +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +

                                                                                                                                                                                                    + + + Parameters + + +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + Full Usage: + Parameters +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Field type: + CodedMap<Parameter> + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Field type: + + CodedMap<Parameter> +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-test.html b/reference/bristlecone-language-test.html new file mode 100644 index 0000000..e9d54da --- /dev/null +++ b/reference/bristlecone-language-test.html @@ -0,0 +1,584 @@ + + + + + + + + + + + + + + + + + + Test (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + Test Module +

                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + Terms for designing tests for model systems. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +

                                                                                                                                                                                                      + + + defaultSettings + + +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + Full Usage: + defaultSettings +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + TestSettings<float> + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + TestSettings<float> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +

                                                                                                                                                                                                      + + + run settings + + +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + Full Usage: + run settings +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                        + + + settings + + : + 'a + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + EstimationEngine<float, float> -> TestSettings<float> -> ModelSystem -> Result<TestResult, string> + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + settings + + : + 'a +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + EstimationEngine<float, float> -> TestSettings<float> -> ModelSystem -> Result<TestResult, string> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +

                                                                                                                                                                                                      + + + withStartValue code value settings + + +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + Full Usage: + withStartValue code value settings +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                        + + + code + + : + string + +
                                                                                                                                                                                                        + + + value + + : + float + +
                                                                                                                                                                                                        + + + settings + + : + TestSettings<float> + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + TestSettings<float> + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + If the start value has already been set, it will be overwritten with the new value. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + code + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + value + + : + float +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + settings + + : + TestSettings<float> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + TestSettings<float> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-writer-writer-2.html b/reference/bristlecone-language-writer-writer-2.html new file mode 100644 index 0000000..4cff6d2 --- /dev/null +++ b/reference/bristlecone-language-writer-writer-2.html @@ -0,0 +1,452 @@ + + + + + + + + + + + + + + + + + + Writer<'a, 'L> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + Writer<'a, 'L> Type +

                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + Union cases +

                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                        + Union case + + Description +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +

                                                                                                                                                                                                        + + + AWriter('a, List<'L>) + + +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + Full Usage: + AWriter('a, List<'L>) +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                          + + + Item1 + + : + 'a + +
                                                                                                                                                                                                          + + + Item2 + + : + List<'L> + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + Item1 + + : + 'a +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + Item2 + + : + List<'L> +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language-writer.html b/reference/bristlecone-language-writer.html new file mode 100644 index 0000000..c089ff8 --- /dev/null +++ b/reference/bristlecone-language-writer.html @@ -0,0 +1,711 @@ + + + + + + + + + + + + + + + + + + Writer (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + Writer Module +

                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + Types +

                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                          + Type + + Description +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + + + Writer<'a, 'L> + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          + + + bind (arg1, arg2) + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Full Usage: + bind (arg1, arg2) +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                            + + + arg0 + + : + 'a + +
                                                                                                                                                                                                            + + + arg1 + + : + 'b + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + Writer<'a, 'b> + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + arg0 + + : + 'a +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + arg1 + + : + 'b +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + Writer<'a, 'b> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          + + + flatMap fx _arg1 + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Full Usage: + flatMap fx _arg1 +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                            + + + fx + + : + 'a -> Writer<'b, 'c> + +
                                                                                                                                                                                                            + + + _arg1 + + : + Writer<'a, 'c> + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + Writer<'b, 'c> + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + fx + + : + 'a -> Writer<'b, 'c> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + _arg1 + + : + Writer<'a, 'c> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + Writer<'b, 'c> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          + + + map fx _arg1 + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Full Usage: + map fx _arg1 +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                            + + + fx + + : + 'a -> 'b + +
                                                                                                                                                                                                            + + + _arg1 + + : + Writer<'a, 'c> + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + Writer<'b, 'c> + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + fx + + : + 'a -> 'b +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + _arg1 + + : + Writer<'a, 'c> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + Writer<'b, 'c> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          + + + run _arg1 + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Full Usage: + run _arg1 +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                            + + + _arg1 + + : + Writer<'a, 'b> + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + 'a * List<'b> + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + _arg1 + + : + Writer<'a, 'b> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + 'a * List<'b> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-language.html b/reference/bristlecone-language.html new file mode 100644 index 0000000..7982ab2 --- /dev/null +++ b/reference/bristlecone-language.html @@ -0,0 +1,1647 @@ + + + + + + + + + + + + + + + + + + Language (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Language Module +

                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Types and nested modules +

                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            + Type/Module + + Description +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + ComputableFragment + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Allows common F# functions to use Bristlecone model expressions. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + ExpressionParser + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + Hypotheses + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + Model + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Terms for scaffolding a model system for use with Bristlecone. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + ModelBuilder + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Scaffolds a `ModelSystem` for fitting with Bristlecone. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + Test + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Terms for designing tests for model systems. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + Writer + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + ArbitraryRequirement + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + ModelExpression + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + A model or model fragment that can be interpreted to a mathematical + expression by Bristlecone. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + + + PluggableComponent<'a> + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Functions and values +

                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            + Function or value + + Description +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + code + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + code +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + string -> ShortCode option + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + A short code representation of an identifier for a parameter, + model equation, or other model component. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + string -> ShortCode option +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + compute x t pool environment ex + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + compute x t pool environment ex +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + x + + : + float + +
                                                                                                                                                                                                              + + + t + + : + float + +
                                                                                                                                                                                                              + + + pool + + : + Pool + +
                                                                                                                                                                                                              + + + environment + + : + CodedMap<float> + +
                                                                                                                                                                                                              + + + ex + + : + ModelExpression + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + float + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Computes a `ModelExpression` given the current time, value, + environment, and parameter pool. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + x + + : + float +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + t + + : + float +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + pool + + : + Pool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + environment + + : + CodedMap<float> +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + ex + + : + ModelExpression +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + float +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + days n + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + days n +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + n + + : + int + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + FixedTemporalResolution + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + n + + : + int +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + FixedTemporalResolution +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + estimateParameter name constraintMode lower upper (arg5, arg6) + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + estimateParameter name constraintMode lower upper (arg5, arg6) +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + name + + : + string + +
                                                                                                                                                                                                              + + + constraintMode + + : + Constraint + +
                                                                                                                                                                                                              + + + lower + + : + float + +
                                                                                                                                                                                                              + + + upper + + : + float + +
                                                                                                                                                                                                              + + + arg4 + + : + 'a + +
                                                                                                                                                                                                              + + + arg5 + + : + PluggableComponent<'b> + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + 'a * PluggableComponent<'b> + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + name + + : + string +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + constraintMode + + : + Constraint +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + lower + + : + float +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + upper + + : + float +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + arg4 + + : + 'a +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + arg5 + + : + PluggableComponent<'b> +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + 'a * PluggableComponent<'b> +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + lookup name map + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + lookup name map +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + name + + : + string + +
                                                                                                                                                                                                              + + + map + + : + CodedMap<float> + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + float + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + name + + : + string +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + map + + : + CodedMap<float> +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + float +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + modelComponent name list + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + modelComponent name list +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + name + + : + 'a + +
                                                                                                                                                                                                              + + + list + + : + 'b + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + 'a * 'b + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + name + + : + 'a +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + list + + : + 'b +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + 'a * 'b +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + months n + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + months n +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + n + + : + int + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + FixedTemporalResolution + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + n + + : + int +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + FixedTemporalResolution +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + noConstraints + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + noConstraints +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + Constraint + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + Constraint +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + notNegative + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + notNegative +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + Constraint + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + Constraint +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + parameter + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + parameter +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + Constraint -> float -> float -> Parameter option + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Define an estimatable parameter for a Bristlecone model. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + Constraint -> float -> float -> Parameter option +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + subComponent name expression + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + subComponent name expression +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + name + + : + 'a + +
                                                                                                                                                                                                              + + + expression + + : + 'b -> ModelExpression + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + 'a * PluggableComponent<'b> + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Creates a nested component that can be inserted into a base model. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + name + + : + 'a +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + expression + + : + 'b -> ModelExpression +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + 'a * PluggableComponent<'b> +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + years n + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + years n +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + n + + : + int + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + FixedTemporalResolution + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + n + + : + int +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + FixedTemporalResolution +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Active patterns +

                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                            + Active pattern + + Description +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + + + (|NotEmptyList|_|) list + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Full Usage: + (|NotEmptyList|_|) list +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                              + + + list + + : + 'a list + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + 'a list option + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + list + + : + 'a list +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + 'a list option +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-list.html b/reference/bristlecone-list.html new file mode 100644 index 0000000..f16c071 --- /dev/null +++ b/reference/bristlecone-list.html @@ -0,0 +1,991 @@ + + + + + + + + + + + + + + + + + + List (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + List Module +

                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              + + + List.combine3 xs ys zs + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Full Usage: + List.combine3 xs ys zs +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                + + + xs + + : + 'a seq + +
                                                                                                                                                                                                                + + + ys + + : + 'b seq + +
                                                                                                                                                                                                                + + + zs + + : + 'c seq + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + ('a * 'b * 'c) list + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + xs + + : + 'a seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + ys + + : + 'b seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + zs + + : + 'c seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + ('a * 'b * 'c) list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              + + + List.combine4 xs ys zs bs + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Full Usage: + List.combine4 xs ys zs bs +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                + + + xs + + : + 'a seq + +
                                                                                                                                                                                                                + + + ys + + : + 'b seq + +
                                                                                                                                                                                                                + + + zs + + : + 'c seq + +
                                                                                                                                                                                                                + + + bs + + : + 'd seq + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + ('a * 'b * 'c * 'd) list + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + xs + + : + 'a seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + ys + + : + 'b seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + zs + + : + 'c seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + bs + + : + 'd seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + ('a * 'b * 'c * 'd) list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              + + + List.combine5 xs ys zs bs cs + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Full Usage: + List.combine5 xs ys zs bs cs +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                + + + xs + + : + 'a seq + +
                                                                                                                                                                                                                + + + ys + + : + 'b seq + +
                                                                                                                                                                                                                + + + zs + + : + 'c seq + +
                                                                                                                                                                                                                + + + bs + + : + 'd seq + +
                                                                                                                                                                                                                + + + cs + + : + 'e seq + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + ('a * 'b * 'c * 'd * 'e) list + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + xs + + : + 'a seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + ys + + : + 'b seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + zs + + : + 'c seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + bs + + : + 'd seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + cs + + : + 'e seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + ('a * 'b * 'c * 'd * 'e) list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              + + + List.combine6 xs ys zs bs cs ds + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Full Usage: + List.combine6 xs ys zs bs cs ds +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                + + + xs + + : + 'a seq + +
                                                                                                                                                                                                                + + + ys + + : + 'b seq + +
                                                                                                                                                                                                                + + + zs + + : + 'c seq + +
                                                                                                                                                                                                                + + + bs + + : + 'd seq + +
                                                                                                                                                                                                                + + + cs + + : + 'e seq + +
                                                                                                                                                                                                                + + + ds + + : + 'f seq + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + ('a * 'b * 'c * 'd * 'e * 'f) list + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + xs + + : + 'a seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + ys + + : + 'b seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + zs + + : + 'c seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + bs + + : + 'd seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + cs + + : + 'e seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + ds + + : + 'f seq +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + ('a * 'b * 'c * 'd * 'e * 'f) list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              + + + List.flip matrix + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Full Usage: + List.flip matrix +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                + + + matrix + + : + 'a list list + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + 'a list list + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + matrix + + : + 'a list list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + 'a list list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              + + + List.remove i l + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Full Usage: + List.remove i l +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                + + + i + + : + int + +
                                                                                                                                                                                                                + + + l + + : + 'b list + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + 'b list + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                              + Remove a single element from a list l at index i. +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + i + + : + int +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + l + + : + 'b list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + 'b list +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-listextensions.html b/reference/bristlecone-listextensions.html new file mode 100644 index 0000000..9aab554 --- /dev/null +++ b/reference/bristlecone-listextensions.html @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + ListExtensions (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + ListExtensions Module +

                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + Active patterns +

                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                + Active pattern + + Description +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                                + + + (|Single|Empty|AllIdentical|Neither|) lst + + +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + Full Usage: + (|Single|Empty|AllIdentical|Neither|) lst +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                  + + + lst + + : + 'a list + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + Returns: + Choice<unit, unit, unit, unit> + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + lst + + : + 'a list +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + Returns: + + Choice<unit, unit, unit, unit> +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging-console.html b/reference/bristlecone-logging-console.html new file mode 100644 index 0000000..9fed7e9 --- /dev/null +++ b/reference/bristlecone-logging-console.html @@ -0,0 +1,448 @@ + + + + + + + + + + + + + + + + + + Console (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + Console Module +

                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + Simple logger to console that prints line-by-line progress and events. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                  + + + logger nIteration + + +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + Full Usage: + logger nIteration +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                    + + + nIteration + + : + int + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + LogEvent -> unit + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + A simple console logger. + `nIteration` specifies the number of iterations after which to log + the current likelihood and parameter values. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + nIteration + + : + int +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + LogEvent -> unit +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging-device.html b/reference/bristlecone-logging-device.html new file mode 100644 index 0000000..78e375e --- /dev/null +++ b/reference/bristlecone-logging-device.html @@ -0,0 +1,449 @@ + + + + + + + + + + + + + + + + + + Device (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    + Device Type +

                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    + Union cases +

                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                    + Union case + + Description +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    + + + PNG + + +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + Full Usage: + PNG +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    + + + X11 + + +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + Full Usage: + X11 +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging-logevent.html b/reference/bristlecone-logging-logevent.html new file mode 100644 index 0000000..7141d87 --- /dev/null +++ b/reference/bristlecone-logging-logevent.html @@ -0,0 +1,612 @@ + + + + + + + + + + + + + + + + + + LogEvent (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + LogEvent Type +

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + Union cases +

                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      + Union case + + Description +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      + + + DebugEvent string + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Full Usage: + DebugEvent string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                        + + + Item + + : + string + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + Item + + : + string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      + + + DifferentiationEvent string + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Full Usage: + DifferentiationEvent string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                        + + + Item + + : + string + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + Item + + : + string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      + + + GeneralEvent string + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Full Usage: + GeneralEvent string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                        + + + Item + + : + string + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + Item + + : + string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      + + + OptimisationEvent ModelFitState + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Full Usage: + OptimisationEvent ModelFitState +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + Item + + : + ModelFitState +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      + + + WorkloadEvent string + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Full Usage: + WorkloadEvent string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                        + + + Item + + : + string + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + Item + + : + string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging-modelfitstate.html b/reference/bristlecone-logging-modelfitstate.html new file mode 100644 index 0000000..d0ffca0 --- /dev/null +++ b/reference/bristlecone-logging-modelfitstate.html @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + ModelFitState (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + ModelFitState Type +

                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + Record fields +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        + Record Field + + Description +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                        + + + Iteration + + +

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + Full Usage: + Iteration +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + Field type: + int + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + Field type: + + int +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                        + + + Likelihood + + +

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + Full Usage: + Likelihood +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                        + + + Theta + + +

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + Full Usage: + Theta +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + Field type: + float seq + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + Field type: + + float seq +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging-realtimetrace-tracegraph.html b/reference/bristlecone-logging-realtimetrace-tracegraph.html new file mode 100644 index 0000000..a8c76f1 --- /dev/null +++ b/reference/bristlecone-logging-realtimetrace-tracegraph.html @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + TraceGraph (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + TraceGraph Type +

                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + Constructors +

                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                          + Constructor + + Description +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                          + + + TraceGraph(graphicsDevice, refreshRate, maxTraceItems) + + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + Full Usage: + TraceGraph(graphicsDevice, refreshRate, maxTraceItems) +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                            + + + graphicsDevice + + : + Device + +
                                                                                                                                                                                                                            + + + refreshRate + + : + int + +
                                                                                                                                                                                                                            + + + maxTraceItems + + : + int + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + Returns: + TraceGraph + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + graphicsDevice + + : + Device +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + refreshRate + + : + int +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + maxTraceItems + + : + int +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + Returns: + + TraceGraph +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + Instance members +

                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                          + Instance member + + Description +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                          + + + this.Log + + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + Full Usage: + this.Log +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + msg + + : + LogEvent +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging-realtimetrace.html b/reference/bristlecone-logging-realtimetrace.html new file mode 100644 index 0000000..8c9d3ce --- /dev/null +++ b/reference/bristlecone-logging-realtimetrace.html @@ -0,0 +1,673 @@ + + + + + + + + + + + + + + + + + + RealTimeTrace (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + RealTimeTrace Module +

                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + Types +

                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                            + Type + + Description +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + + + TraceGraph + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + Functions and values +

                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            + Function or value + + Description +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            + + + convertToDataFrame d + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Full Usage: + convertToDataFrame d +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                              + + + d + + : + ('a * 'b) list + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + Returns: + SymbolicExpression + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + d + + : + ('a * 'b) list +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + Returns: + + SymbolicExpression +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            + + + decompose state + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Full Usage: + decompose state +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                            + + Returns: + (int * float * string * float) seq + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + state + + : + ModelFitState +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + Returns: + + (int * float * string * float) seq +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            + + + facetedTrace data + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Full Usage: + facetedTrace data +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                              + + + data + + : + Map<'a, 'b> + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + Returns: + SymbolicExpression + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + data + + : + Map<'a, 'b> +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + Returns: + + SymbolicExpression +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            + + + graphWithConsole refreshRate maxData + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Full Usage: + graphWithConsole refreshRate maxData +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                              + + + refreshRate + + : + int + +
                                                                                                                                                                                                                              + + + maxData + + : + int + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + Returns: + LogEvent -> unit + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + refreshRate + + : + int +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + maxData + + : + int +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + Returns: + + LogEvent -> unit +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging-rhelper.html b/reference/bristlecone-logging-rhelper.html new file mode 100644 index 0000000..8ba74c5 --- /dev/null +++ b/reference/bristlecone-logging-rhelper.html @@ -0,0 +1,444 @@ + + + + + + + + + + + + + + + + + + RHelper (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + RHelper Module +

                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              + + + plot1 >!> plot2 + + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + Full Usage: + plot1 >!> plot2 +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                              + + Returns: + SymbolicExpression + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + plot1 + + : + SymbolicExpression +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + plot2 + + : + SymbolicExpression +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + Returns: + + SymbolicExpression +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-logging.html b/reference/bristlecone-logging.html new file mode 100644 index 0000000..4327716 --- /dev/null +++ b/reference/bristlecone-logging.html @@ -0,0 +1,499 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Logging | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + Bristlecone.Logging Namespace +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                + Type/Module + + Description +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + + + Console + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                + Simple logger to console that prints line-by-line progress and events. +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + + + Device + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + + + LogEvent + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + + + ModelFitState + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + + + RealTimeTrace + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + + + RHelper + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-map.html b/reference/bristlecone-map.html new file mode 100644 index 0000000..36d0831 --- /dev/null +++ b/reference/bristlecone-map.html @@ -0,0 +1,598 @@ + + + + + + + + + + + + + + + + + + Map (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + Map Module +

                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  + + + Map.keys map + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + Full Usage: + Map.keys map +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                    + + + map + + : + Map<'key, 'value> + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + Returns: + 'key seq + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + map + + : + Map<'key, 'value> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + Returns: + + 'key seq +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  + + + Map.merge group1 group2 appender + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + Full Usage: + Map.merge group1 group2 appender +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                    + + + group1 + + : + KeyValuePair<'a, 'b> seq + +
                                                                                                                                                                                                                                    + + + group2 + + : + Map<'a, 'b> + +
                                                                                                                                                                                                                                    + + + appender + + : + 'b -> 'b -> 'b + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + Returns: + Map<'a, 'b> + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + group1 + + : + KeyValuePair<'a, 'b> seq +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + group2 + + : + Map<'a, 'b> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + appender + + : + 'b -> 'b -> 'b +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + Returns: + + Map<'a, 'b> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  + + + Map.tryFindBy f map + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + Full Usage: + Map.tryFindBy f map +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                    + + + f + + : + 'key -> bool + +
                                                                                                                                                                                                                                    + + + map + + : + Map<'key, 'a> + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + Returns: + 'a option + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + f + + : + 'key -> bool +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + map + + : + Map<'key, 'a> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + Returns: + + 'a option +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modellibrary-likelihood.html b/reference/bristlecone-modellibrary-likelihood.html new file mode 100644 index 0000000..2d0c94b --- /dev/null +++ b/reference/bristlecone-modellibrary-likelihood.html @@ -0,0 +1,719 @@ + + + + + + + + + + + + + + + + + + Likelihood (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + Likelihood Module +

                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + Likelihood functions to represent a variety of distributions and data types. +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    + + + bivariateGaussian key1 key2 paramAccessor data + + +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + Full Usage: + bivariateGaussian key1 key2 paramAccessor data +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                    + + Returns: + float + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                    + Log likelihood function for dual simultaneous system, assuming Gaussian error for both x and y. + Requires parameters 'σ[x]', 'σ[y]' and 'ρ' to be included in any `ModelSystem` that uses it. +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + key1 + + : + string +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + key2 + + : + string +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + paramAccessor + + : + ParameterValueAccessor +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + data + + : + CodedMap<PredictedSeries> +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + Returns: + + float +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    + + + gaussian key paramAccessor data + + +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + Full Usage: + gaussian key paramAccessor data +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                    + + Returns: + float + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                    + Log likelihood function for single equation system, assuming Gaussian error for x. + Requires a parameter 'σ[x]' to be included in any `ModelSystem` that uses it. +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + key + + : + string +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + paramAccessor + + : + ParameterValueAccessor +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + data + + : + CodedMap<PredictedSeries> +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + Returns: + + float +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    + + + sumOfSquares keys arg2 data + + +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + Full Usage: + sumOfSquares keys arg2 data +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                    + + Returns: + float + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                    + Residual sum of squares. Provides a simple metric of distance between + observed data and model predictions. +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + keys + + : + string list +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + arg1 + + : + ParameterValueAccessor +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + data + + : + CodedMap<PredictedSeries> +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + Returns: + + float +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modellibrary.html b/reference/bristlecone-modellibrary.html new file mode 100644 index 0000000..a413381 --- /dev/null +++ b/reference/bristlecone-modellibrary.html @@ -0,0 +1,368 @@ + + + + + + + + + + + + + + + + + + Bristlecone.ModelLibrary | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + Bristlecone.ModelLibrary Namespace +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + Pre-built model parts for use in Bristlecone +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                      + Modules + + Description +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + + + Likelihood + + +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                      + Likelihood functions to represent a variety of distributions and data types. +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelselection-akaike-akaikeweight.html b/reference/bristlecone-modelselection-akaike-akaikeweight.html new file mode 100644 index 0000000..be0c9c2 --- /dev/null +++ b/reference/bristlecone-modelselection-akaike-akaikeweight.html @@ -0,0 +1,545 @@ + + + + + + + + + + + + + + + + + + AkaikeWeight (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + AkaikeWeight Type +

                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + Record fields +

                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                        + Record Field + + Description +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        + + + AIC + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + Full Usage: + AIC +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        + + + AICc + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + Full Usage: + AICc +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        + + + Likelihood + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + Full Usage: + Likelihood +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        + + + Weight + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + Full Usage: + Weight +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelselection-akaike.html b/reference/bristlecone-modelselection-akaike.html new file mode 100644 index 0000000..5754699 --- /dev/null +++ b/reference/bristlecone-modelselection-akaike.html @@ -0,0 +1,721 @@ + + + + + + + + + + + + + + + + + + Akaike (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + Akaike Module +

                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + Functions for conducting Akaike Information Criterion (AIC). +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + Types +

                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          + Type + + Description +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + + + AkaikeWeight + + +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          + + + aic k logLikelihood + + +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + Full Usage: + aic k logLikelihood +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                            + + + k + + : + int + +
                                                                                                                                                                                                                                            + + + logLikelihood + + : + float + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + Returns: + float + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          **Description**
                                                                                                                                                                                                                                          + The Akaike information criterion, a standardised index of model fit quality for models that have different numbers of parameters.
                                                                                                                                                                                                                                          +**Parameters**
                                                                                                                                                                                                                                          +  * `k` - The number of parameters within the model in question.
                                                                                                                                                                                                                                          +  * `logLikelihood` - a `float` representing the minimum log-likelihood achieved for the model in question.
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + k + + : + int +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + logLikelihood + + : + float +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + Returns: + + float +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          + + + aicc n k logLikelihood + + +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + Full Usage: + aicc n k logLikelihood +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                            + + + n + + : + int + +
                                                                                                                                                                                                                                            + + + k + + : + int + +
                                                                                                                                                                                                                                            + + + logLikelihood + + : + float + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + Returns: + float + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          **Description**
                                                                                                                                                                                                                                          + The Akaike information criterion, corrected for small sample sizes.
                                                                                                                                                                                                                                          + It represents standardised index of model fit quality for models that have different numbers of parameters.
                                                                                                                                                                                                                                          +**Assumptions**
                                                                                                                                                                                                                                          + Your model must adhere to the following assumptions:
                                                                                                                                                                                                                                          + - Univariate
                                                                                                                                                                                                                                          + - Linear in parameters
                                                                                                                                                                                                                                          + - Normally-distributed residuals
                                                                                                                                                                                                                                          +**Parameters**
                                                                                                                                                                                                                                          +  * `n` - The sample size
                                                                                                                                                                                                                                          +  * `k` - The number of parameters within the model in question.
                                                                                                                                                                                                                                          +  * `logLikelihood` - a `float` representing the minimum log-likelihood achieved for the model in question.
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + n + + : + int +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + k + + : + int +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + logLikelihood + + : + float +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + Returns: + + float +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          + + + akaikeWeights models + + +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + Full Usage: + akaikeWeights models +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                          + + Returns: + (EstimationResult * AkaikeWeight) seq + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                           **Description**
                                                                                                                                                                                                                                          + Akaike weights for a set of model results.
                                                                                                                                                                                                                                          + The weights can be directly interpreted as conditional probabilities for each model.
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + **Output Type**
                                                                                                                                                                                                                                          +   * A `seq` of estimation results paired to their Akaike weights.
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + **Exceptions**
                                                                                                                                                                                                                                          +   * `ArgumentException` - occurs when there are no observations within an estimation result.
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + models + + : + EstimationResult seq +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + Returns: + + (EstimationResult * AkaikeWeight) seq +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelselection-result-1.html b/reference/bristlecone-modelselection-result-1.html new file mode 100644 index 0000000..7be2a7a --- /dev/null +++ b/reference/bristlecone-modelselection-result-1.html @@ -0,0 +1,546 @@ + + + + + + + + + + + + + + + + + + Result<'subject> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + Result<'subject> Type +

                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + A record of an individual maximum likelihood estimate for + a particular subject and hypothesis. +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + Record fields +

                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                            + Record Field + + Description +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            + + + AnalysisId + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + Full Usage: + AnalysisId +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + Guid + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + + Guid +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            + + + Estimate + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + Full Usage: + Estimate +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + EstimationResult + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + + EstimationResult +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            + + + ModelId + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + Full Usage: + ModelId +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + string + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + + string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            + + + Subject + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + Full Usage: + Subject +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + 'subject + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + Field type: + + 'subject +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelselection-resultset.html b/reference/bristlecone-modelselection-resultset.html new file mode 100644 index 0000000..1fd0438 --- /dev/null +++ b/reference/bristlecone-modelselection-resultset.html @@ -0,0 +1,485 @@ + + + + + + + + + + + + + + + + + + ResultSet (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + ResultSet Module +

                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + Organises multiple hypotheses and multiple subjects into + distinct analysis groups. +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                              + + + ResultSet.arrangeResultSets subjects hypotheses getResults + + +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + Full Usage: + ResultSet.arrangeResultSets subjects hypotheses getResults +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                + + + subjects + + : + 'a seq + +
                                                                                                                                                                                                                                                + + + hypotheses + + : + 'hypothesis seq + +
                                                                                                                                                                                                                                                + + + getResults + + : + 'a -> 'hypothesis -> int -> 'b + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + Returns: + ResultSet<'a, 'hypothesis> seq + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                              + Arrange estimation results into subject and hypothesis groups. +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + subjects + + : + 'a seq +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + hypotheses + + : + 'hypothesis seq +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + getResults + + : + 'a -> 'hypothesis -> int -> 'b +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + Returns: + + ResultSet<'a, 'hypothesis> seq +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelselection.html b/reference/bristlecone-modelselection.html new file mode 100644 index 0000000..bc2d357 --- /dev/null +++ b/reference/bristlecone-modelselection.html @@ -0,0 +1,610 @@ + + + + + + + + + + + + + + + + + + ModelSelection (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + ModelSelection Module +

                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + Types and nested modules +

                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                + Type/Module + + Description +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + + + Akaike + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                + Functions for conducting Akaike Information Criterion (AIC). +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + + + ResultSet + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                + Organises multiple hypotheses and multiple subjects into + distinct analysis groups. +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + + + Result<'subject> + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                + A record of an individual maximum likelihood estimate for + a particular subject and hypothesis. +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                + + + calculate results + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + Full Usage: + calculate results +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                  + + + results + + : + Result<'subject> seq + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + Returns: + (Result<'subject> * AkaikeWeight) seq + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                + Given a list of model predictions, find the best MLE for each + model * subject combination, calculate the weights for this set. +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + results + + : + Result<'subject> seq +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + Returns: + + (Result<'subject> * AkaikeWeight) seq +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                + + + weights results + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + Full Usage: + weights results +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                  + + + results + + : + ResultSet<'a, 'b> seq + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + Returns: + ('a * string * EstimationResult * AkaikeWeight) list + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + results + + : + ResultSet<'a, 'b> seq +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + Returns: + + ('a * string * EstimationResult * AkaikeWeight) list +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-estimationresult.html b/reference/bristlecone-modelsystem-estimationresult.html new file mode 100644 index 0000000..d97ad5b --- /dev/null +++ b/reference/bristlecone-modelsystem-estimationresult.html @@ -0,0 +1,623 @@ + + + + + + + + + + + + + + + + + + EstimationResult (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + EstimationResult Type +

                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + An estimated model fit for a time-series model. +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + Record fields +

                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                  + Record Field + + Description +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  + + + InternalDynamics + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + Full Usage: + InternalDynamics +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + CodedMap<float[]> option + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + + CodedMap<float[]> option +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  + + + Likelihood + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + Full Usage: + Likelihood +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + float + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + + float +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  + + + Parameters + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + Full Usage: + Parameters +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + Pool + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + + Pool +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  + + + ResultId + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + Full Usage: + ResultId +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + Guid + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + + Guid +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  + + + Series + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + Full Usage: + Series +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + CodedMap<FitSeries> + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + + CodedMap<FitSeries> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  + + + Trace + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + Full Usage: + Trace +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + (float * float[]) list + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + Field type: + + (float * float[]) list +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-fitseries.html b/reference/bristlecone-modelsystem-fitseries.html new file mode 100644 index 0000000..fd7baf5 --- /dev/null +++ b/reference/bristlecone-modelsystem-fitseries.html @@ -0,0 +1,627 @@ + + + + + + + + + + + + + + + + + + FitSeries (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + FitSeries Type +

                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + Instance members +

                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    + Instance member + + Description +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    + + + this.Head + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + Full Usage: + this.Head +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + Epoch<FitValue> + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + + Epoch<FitValue> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    + + + this.Length + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + Full Usage: + this.Length +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + int + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + + int +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    + + + this.Resolution + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + Full Usage: + this.Resolution +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + TemporalResolution + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + + TemporalResolution +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    + + + this.StartDate + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + Full Usage: + this.StartDate +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + Observation<FitValue> + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + + Observation<FitValue> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    + + + this.TimeSteps + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + Full Usage: + this.TimeSteps +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + TimeSpan[] + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + + TimeSpan[] +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    + + + this.Values + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + Full Usage: + this.Values +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + FitValue seq + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + Returns: + + FitValue seq +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-fitvalue.html b/reference/bristlecone-modelsystem-fitvalue.html new file mode 100644 index 0000000..c0b14e5 --- /dev/null +++ b/reference/bristlecone-modelsystem-fitvalue.html @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + FitValue (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + FitValue Type +

                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + Record fields +

                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                      + Record Field + + Description +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      + + + Fit + + +

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + Full Usage: + Fit +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + Field type: + float + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + Field type: + + float +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      + + + Obs + + +

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + Full Usage: + Obs +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + Field type: + float + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + Field type: + + float +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-likelihoodfn.html b/reference/bristlecone-modelsystem-likelihoodfn.html new file mode 100644 index 0000000..11a4866 --- /dev/null +++ b/reference/bristlecone-modelsystem-likelihoodfn.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + LikelihoodFn (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + LikelihoodFn Type +

                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + A function that computes the likelihood of a set of parameters. +

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-measureequation.html b/reference/bristlecone-modelsystem-measureequation.html new file mode 100644 index 0000000..2a25836 --- /dev/null +++ b/reference/bristlecone-modelsystem-measureequation.html @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + MeasureEquation (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + MeasureEquation Type +

                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + A function that computes a measured system property given a + current (time t) and previous (time t-1) system state. +

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-modelequation.html b/reference/bristlecone-modelsystem-modelequation.html new file mode 100644 index 0000000..abdb870 --- /dev/null +++ b/reference/bristlecone-modelsystem-modelequation.html @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + ModelEquation (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            + ModelEquation Type +

                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            + An ordinary differential equation that may require fixed or free parameters, + the current time t, the current response value, and / or external environmental time series. +

                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-modelsystem.html b/reference/bristlecone-modelsystem-modelsystem.html new file mode 100644 index 0000000..59ad83b --- /dev/null +++ b/reference/bristlecone-modelsystem-modelsystem.html @@ -0,0 +1,533 @@ + + + + + + + + + + + + + + + + + + ModelSystem (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              + ModelSystem Type +

                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              + Record fields +

                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              + Record Field + + Description +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              + + + Equations + + +

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + Full Usage: + Equations +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + CodedMap<ModelEquation> + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + + CodedMap<ModelEquation> +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              + + + Likelihood + + +

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + Full Usage: + Likelihood +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + LikelihoodFn + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + + LikelihoodFn +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              + + + Measures + + +

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + Full Usage: + Measures +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + CodedMap<MeasureEquation> + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + + CodedMap<MeasureEquation> +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              + + + Parameters + + +

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + Full Usage: + Parameters +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + Pool + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + Field type: + + Pool +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-parametervalueaccessor.html b/reference/bristlecone-modelsystem-parametervalueaccessor.html new file mode 100644 index 0000000..18c760d --- /dev/null +++ b/reference/bristlecone-modelsystem-parametervalueaccessor.html @@ -0,0 +1,503 @@ + + + + + + + + + + + + + + + + + + ParameterValueAccessor (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                + ParameterValueAccessor Type +

                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                + A function that returns a parameter's current value by its name. +

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                + Union cases +

                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                + Union case + + Description +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                + + + ParameterValueAccessor string -> float + + +

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + Full Usage: + ParameterValueAccessor string -> float +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                  + + + Item + + : + string -> float + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + Item + + : + string -> float +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                + Instance members +

                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                + Instance member + + Description +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                + + + this.Get + + +

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + Full Usage: + this.Get +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                  + + + name + + : + string + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + Returns: + float + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + name + + : + string +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + Returns: + + float +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-predictedseries.html b/reference/bristlecone-modelsystem-predictedseries.html new file mode 100644 index 0000000..c039694 --- /dev/null +++ b/reference/bristlecone-modelsystem-predictedseries.html @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + PredictedSeries (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  + PredictedSeries Type +

                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  + Paired time-series representing the true and modelled time-series. +

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  + Record fields +

                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  + Record Field + + Description +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                  + + + Expected + + +

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + Full Usage: + Expected +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + Field type: + float[] + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + Field type: + + float[] +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                  + + + Observed + + +

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + Full Usage: + Observed +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + Field type: + float[] + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + Field type: + + float[] +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-response.html b/reference/bristlecone-modelsystem-response.html new file mode 100644 index 0000000..9ee0c3c --- /dev/null +++ b/reference/bristlecone-modelsystem-response.html @@ -0,0 +1,368 @@ + + + + + + + + + + + + + + + + + + Response (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    + Response Type +

                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem-time.html b/reference/bristlecone-modelsystem-time.html new file mode 100644 index 0000000..9266766 --- /dev/null +++ b/reference/bristlecone-modelsystem-time.html @@ -0,0 +1,368 @@ + + + + + + + + + + + + + + + + + + Time (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      + Time Type +

                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-modelsystem.html b/reference/bristlecone-modelsystem.html new file mode 100644 index 0000000..bce35e0 --- /dev/null +++ b/reference/bristlecone-modelsystem.html @@ -0,0 +1,659 @@ + + + + + + + + + + + + + + + + + + ModelSystem (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + ModelSystem Module +

                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + Represents an ordinary differential equation model system and + its likelihood as as objective function that may be optimised. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + Types +

                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                        + Type + + Description +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + EstimationResult + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + An estimated model fit for a time-series model. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + FitSeries + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + FitValue + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + LikelihoodFn + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + A function that computes the likelihood of a set of parameters. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + MeasureEquation + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + A function that computes a measured system property given a + current (time t) and previous (time t-1) system state. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + ModelEquation + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + An ordinary differential equation that may require fixed or free parameters, + the current time t, the current response value, and / or external environmental time series. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + ModelSystem + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + ParameterValueAccessor + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + A function that returns a parameter's current value by its name. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + PredictedSeries + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Paired time-series representing the true and modelled time-series. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + Response + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        + + + Time + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-objective.html b/reference/bristlecone-objective.html new file mode 100644 index 0000000..1574d79 --- /dev/null +++ b/reference/bristlecone-objective.html @@ -0,0 +1,920 @@ + + + + + + + + + + + + + + + + + + Objective (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          + Objective Module +

                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          + Configures a single function that represents a model and its likelihood + when fit to time-series data. +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          + + + Objective.create system integrate solveDiscrete observed point + + +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Full Usage: + Objective.create system integrate solveDiscrete observed point +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                          + + Returns: + float + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                          + Computes measurement variables and appends to expected data +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + system + + : + ModelSystem +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + integrate + + : + Map<ShortCode, (Time -> Response -> Environment -> float)> -> CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + solveDiscrete + + : + ShortCode -> MeasureEquation -> CodedMap<float[]> -> float[] +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + observed + + : + CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + point + + : + Point<float> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + Returns: + + float +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          + + + Objective.measure system solveDiscrete expected + + +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Full Usage: + Objective.measure system solveDiscrete expected +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                          + + Returns: + CodedMap<float[]> + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                          + The system's `Measures` are computed from the product of the solver. +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + system + + : + ModelSystem +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + solveDiscrete + + : + ShortCode -> MeasureEquation -> CodedMap<float[]> -> float[] +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + expected + + : + CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + Returns: + + CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          + + + Objective.pairObservationsToExpected observed expected + + +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Full Usage: + Objective.pairObservationsToExpected observed expected +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                            + + + observed + + : + CodedMap<float[]> + +
                                                                                                                                                                                                                                                                            + + + expected + + : + CodedMap<float[]> + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + Returns: + CodedMap<PredictedSeries> + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                          + Pairs observed time series to predicted series for dynamic variables only. + Environmental forcings and hidden variables are removed. +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + observed + + : + CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + expected + + : + CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + Returns: + + CodedMap<PredictedSeries> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          + + + Objective.parameteriseModel parameterPool point model + + +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Full Usage: + Objective.parameteriseModel parameterPool point model +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                          + + Returns: + Time -> Response -> Environment -> float + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + parameterPool + + : + ParameterPool +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + point + + : + float[] +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + model + + : + ModelEquation +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + Returns: + + Time -> Response -> Environment -> float +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          + + + Objective.predict system integrate solveDiscrete p + + +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Full Usage: + Objective.predict system integrate solveDiscrete p +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                          + + Returns: + CodedMap<float[]> + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + system + + : + ModelSystem +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + integrate + + : + Map<ShortCode, (Time -> Response -> Environment -> float)> -> CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + solveDiscrete + + : + ShortCode -> MeasureEquation -> CodedMap<float[]> -> float[] +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + p + + : + Point<float> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + Returns: + + CodedMap<float[]> +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-amoeba-solver-amoeba.html b/reference/bristlecone-optimisation-amoeba-solver-amoeba.html new file mode 100644 index 0000000..dc1b79b --- /dev/null +++ b/reference/bristlecone-optimisation-amoeba-solver-amoeba.html @@ -0,0 +1,602 @@ + + + + + + + + + + + + + + + + + + Amoeba (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            + Amoeba Type +

                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            + Record fields +

                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            + Record Field + + Description +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            + + + Dim + + +

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + Full Usage: + Dim +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Field type: + int + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Field type: + + int +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            + + + Solutions + + +

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + Full Usage: + Solutions +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Field type: + Solution<float>[] + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Field type: + + Solution<float>[] +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            + Instance members +

                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            + Instance member + + Description +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            + + + this.Best + + +

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + Full Usage: + this.Best +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Returns: + Solution<float> + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Returns: + + Solution<float> +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            + + + this.Size + + +

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + Full Usage: + this.Size +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Returns: + int + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Returns: + + int +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            + + + this.Worst + + +

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + Full Usage: + this.Worst +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Returns: + Solution<float> + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + Returns: + + Solution<float> +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-amoeba-solver-settings.html b/reference/bristlecone-optimisation-amoeba-solver-settings.html new file mode 100644 index 0000000..ad5a08b --- /dev/null +++ b/reference/bristlecone-optimisation-amoeba-solver-settings.html @@ -0,0 +1,584 @@ + + + + + + + + + + + + + + + + + + Settings (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              + Settings Type +

                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              + Record fields +

                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              + Record Field + + Description +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              + + + Alpha + + +

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + Full Usage: + Alpha +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + float + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + + float +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              + + + Gamma + + +

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + Full Usage: + Gamma +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + float + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + + float +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              + + + Rho + + +

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + Full Usage: + Rho +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + float + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + + float +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              + + + Sigma + + +

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + Full Usage: + Sigma +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + float + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + + float +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              + + + Size + + +

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + Full Usage: + Size +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + int + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + Field type: + + int +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-amoeba-solver.html b/reference/bristlecone-optimisation-amoeba-solver.html new file mode 100644 index 0000000..4726227 --- /dev/null +++ b/reference/bristlecone-optimisation-amoeba-solver.html @@ -0,0 +1,1774 @@ + + + + + + + + + + + + + + + + + + Solver (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + Solver Module +

                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + Types +

                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                + Type + + Description +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + Amoeba + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + Settings + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + Default + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + Default +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + Settings + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + centroid a + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + centroid a +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + a + + : + Amoeba + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + a + + : + Amoeba +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + contracted (arg1, arg2) s + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + contracted (arg1, arg2) s +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + arg0 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + arg1 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + s + + : + Settings + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg0 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg1 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + s + + : + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + evaluate f x + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + evaluate f x +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                + + Returns: + float * Point<'a> + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + f + + : + Objective<'a> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + x + + : + Point<'a> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float * Point<'a> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + expanded (arg1, arg2) s + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + expanded (arg1, arg2) s +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + arg0 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + arg1 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + s + + : + Settings + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg0 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg1 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + s + + : + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + initialize d rng + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + initialize d rng +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + d + + : + Domain +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + rng + + : + Random +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + reflected (arg1, arg2) s + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + reflected (arg1, arg2) s +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + arg0 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + arg1 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + s + + : + Settings + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg0 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg1 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + s + + : + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + replace a (arg2, arg3) + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + replace a (arg2, arg3) +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + a + + : + Amoeba + +
                                                                                                                                                                                                                                                                                  + + + arg1 + + : + float + +
                                                                                                                                                                                                                                                                                  + + + arg2 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + Amoeba + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + a + + : + Amoeba +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg1 + + : + float +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg2 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + Amoeba +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + shrink a f s + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + shrink a f s +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                + + Returns: + Amoeba + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + a + + : + Amoeba +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + f + + : + Objective<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + s + + : + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + Amoeba +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + solve settings rng writeOut endWhen domain startPoint f + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + solve settings rng writeOut endWhen domain startPoint f +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + settings + + : + Settings + +
                                                                                                                                                                                                                                                                                  + + + rng + + : + Random + +
                                                                                                                                                                                                                                                                                  + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                  + + + endWhen + + : + EndCondition<float> + +
                                                                                                                                                                                                                                                                                  + + + domain + + : + (float * float * Constraint)[] + +
                                                                                                                                                                                                                                                                                  + + + startPoint + + : + 'a + +
                                                                                                                                                                                                                                                                                  + + + f + + : + Objective<float> + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + Solution<float> list + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + settings + + : + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + rng + + : + Random +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + endWhen + + : + EndCondition<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + domain + + : + (float * float * Constraint)[] +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + startPoint + + : + 'a +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + f + + : + Objective<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + Solution<float> list +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + stretch (arg1, arg2) s + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + stretch (arg1, arg2) s +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + arg0 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + arg1 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                  + + + s + + : + float + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg0 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg1 + + : + Point<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + s + + : + float +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + swarm settings rng logger numberOfLevels iterationsPerLevel numberOfAmoeba paramBounds startPoint f + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + swarm settings rng logger numberOfLevels iterationsPerLevel numberOfAmoeba paramBounds startPoint f +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + settings + + : + Settings + +
                                                                                                                                                                                                                                                                                  + + + rng + + : + Random + +
                                                                                                                                                                                                                                                                                  + + + logger + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                  + + + numberOfLevels + + : + int + +
                                                                                                                                                                                                                                                                                  + + + iterationsPerLevel + + : + EndCondition<float> + +
                                                                                                                                                                                                                                                                                  + + + numberOfAmoeba + + : + int + +
                                                                                                                                                                                                                                                                                  + + + paramBounds + + : + Domain + +
                                                                                                                                                                                                                                                                                  + + + startPoint + + : + 'a + +
                                                                                                                                                                                                                                                                                  + + + f + + : + Objective<float> + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + Solution<float> + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + settings + + : + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + rng + + : + Random +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + logger + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + numberOfLevels + + : + int +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + iterationsPerLevel + + : + EndCondition<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + numberOfAmoeba + + : + int +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + paramBounds + + : + Domain +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + startPoint + + : + 'a +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + f + + : + Objective<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + Solution<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + update a f s + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + update a f s +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                + + Returns: + Amoeba + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + a + + : + Amoeba +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + f + + : + Objective<float> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + s + + : + Settings +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + Amoeba +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + valueOf (arg1, arg2) + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + valueOf (arg1, arg2) +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + arg0 + + : + float + +
                                                                                                                                                                                                                                                                                  + + + arg1 + + : + Point<'a> + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + float + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg0 + + : + float +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + arg1 + + : + Point<'a> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + float +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-amoeba.html b/reference/bristlecone-optimisation-amoeba.html new file mode 100644 index 0000000..031151a --- /dev/null +++ b/reference/bristlecone-optimisation-amoeba.html @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + + Amoeba (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + Amoeba Module +

                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + Nelder Mead implementation + Adapted from original at: https://github.com/mathias-brandewinder/Amoeba +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + Nested modules +

                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  + Modules + + Description +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + + + Solver + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  + + + single settings + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + Full Usage: + single settings +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                  + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                  + Optimise an objective function using a single downhill Nelder Mead simplex. +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + settings + + : + Settings +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  + + + swarm levels amoebaAtLevel settings + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + Full Usage: + swarm levels amoebaAtLevel settings +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                    + + + levels + + : + int + +
                                                                                                                                                                                                                                                                                    + + + amoebaAtLevel + + : + int + +
                                                                                                                                                                                                                                                                                    + + + settings + + : + Settings + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                  + Optimisation heuristic that creates a swarm of amoeba (Nelder-Mead) solvers. + The swarm proceeds for `numberOfLevels` levels, constraining the starting bounds + at each level to the 80th percentile of the current set of best likelihoods. +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + levels + + : + int +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + amoebaAtLevel + + : + int +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + settings + + : + Settings +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-bounds.html b/reference/bristlecone-optimisation-confidenceinterval-bounds.html new file mode 100644 index 0000000..8121582 --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-bounds.html @@ -0,0 +1,482 @@ + + + + + + + + + + + + + + + + + + Bounds (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    + Bounds Module +

                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    + Differences in likelihood for different confidence intervals + based on a chi squared distribution. +

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                    + + + lowerBound + + +

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + Full Usage: + lowerBound +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + Returns: + float + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                    + The difference in likelihood at 68% confidence +

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + Returns: + + float +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                    + + + upperBound + + +

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + Full Usage: + upperBound +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + Returns: + float + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                    + The difference in likelihood at 95% confidence +

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + Returns: + + float +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-confidenceinterval.html b/reference/bristlecone-optimisation-confidenceinterval-confidenceinterval.html new file mode 100644 index 0000000..4a941d7 --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-confidenceinterval.html @@ -0,0 +1,503 @@ + + + + + + + + + + + + + + + + + + ConfidenceInterval (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      + ConfidenceInterval Type +

                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      + + + The 95% and 68% confidence interval around a point estimate. + +

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      + Record fields +

                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                      + Record Field + + Description +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                      + + + 68% + + +

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + Full Usage: + 68% +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + Field type: + Interval + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + Field type: + + Interval +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                      + + + 95% + + +

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + Full Usage: + 95% +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + Field type: + Interval + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + Field type: + + Interval +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                      + + + Estimate + + +

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + Full Usage: + Estimate +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + Field type: + float + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + Field type: + + float +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-interval.html b/reference/bristlecone-optimisation-confidenceinterval-interval.html new file mode 100644 index 0000000..55ba0d7 --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-interval.html @@ -0,0 +1,461 @@ + + + + + + + + + + + + + + + + + + Interval (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        + Interval Type +

                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        + Record fields +

                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                        + Record Field + + Description +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + Lower + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + Lower +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + Upper + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + Upper +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-optimisationeventstash.html b/reference/bristlecone-optimisation-confidenceinterval-optimisationeventstash.html new file mode 100644 index 0000000..9ac0756 --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-optimisationeventstash.html @@ -0,0 +1,514 @@ + + + + + + + + + + + + + + + + + + OptimisationEventStash (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          + OptimisationEventStash Type +

                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          + Keeps a list of all optimisation events that occur for further analysis. +

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          + Constructors +

                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          + Constructor + + Description +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                          + + + OptimisationEventStash() + + +

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + Full Usage: + OptimisationEventStash() +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + Returns: + OptimisationEventStash + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + Returns: + + OptimisationEventStash +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          + Instance members +

                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          + Instance member + + Description +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                          + + + this.GetAll + + +

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + Full Usage: + this.GetAll +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + Returns: + ModelFitState list + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + Returns: + + ModelFitState list +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                          + + + this.SaveEvent + + +

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + Full Usage: + this.SaveEvent +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + e + + : + LogEvent +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html new file mode 100644 index 0000000..89523ee --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod-tunesettings.html @@ -0,0 +1,602 @@ + + + + + + + + + + + + + + + + + + TuneSettings (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            + TuneSettings Type +

                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            + Record fields +

                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            + Record Field + + Description +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            + + + InitialScale + + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + Full Usage: + InitialScale +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + float + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + + float +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            + + + KMax + + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + Full Usage: + KMax +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + int + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + + int +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            + + + MinimumSampleSize + + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + Full Usage: + MinimumSampleSize +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + int + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + + int +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            + + + TuneN + + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + Full Usage: + TuneN +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + int + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Field type: + + int +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            + Static members +

                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            + Static member + + Description +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            + + + TuneSettings.Default + + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + Full Usage: + TuneSettings.Default +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Returns: + TuneSettings + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + Returns: + + TuneSettings +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod.html b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod.html new file mode 100644 index 0000000..aebf731 --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-customoptimisationmethod.html @@ -0,0 +1,637 @@ + + + + + + + + + + + + + + + + + + CustomOptimisationMethod (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + CustomOptimisationMethod Module +

                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + Types +

                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              + Type + + Description +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + + + TuneSettings + + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              + + + classic settings + + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + Full Usage: + classic settings +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                              + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + settings + + : + TuneSettings +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              + + + tunedSearch random settings machine jump writeOut domain f + + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + Full Usage: + tunedSearch random settings machine jump writeOut domain f +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                + + + settings + + : + TuneSettings + +
                                                                                                                                                                                                                                                                                                + + + machine + + : + float -> float -> float + +
                                                                                                                                                                                                                                                                                                + + + jump + + : + Random -> float -> unit -> float + +
                                                                                                                                                                                                                                                                                                + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                + + + domain + + : + Domain + +
                                                                                                                                                                                                                                                                                                + + + f + + : + float[] -> float + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + Returns: + (float * float[]) list + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + random + + : + Random +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + settings + + : + TuneSettings +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + machine + + : + float -> float -> float +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + jump + + : + Random -> float -> unit -> float +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + domain + + : + Domain +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + f + + : + float[] -> float +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + Returns: + + (float * float[]) list +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-estimatefunction-3.html b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-estimatefunction-3.html new file mode 100644 index 0000000..62129fe --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood-estimatefunction-3.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + EstimateFunction<'data, 'time, 'subject> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                + EstimateFunction<'data, 'time, 'subject> Type +

                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood.html b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood.html new file mode 100644 index 0000000..19f112a --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval-profilelikelihood.html @@ -0,0 +1,712 @@ + + + + + + + + + + + + + + + + + + ProfileLikelihood (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + ProfileLikelihood Module +

                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + Given a maximum likelihood estimate (MLE), the profile likelihood method + runs a Monte Carlo algorithm that samples around the MLE. The range for + each parameter is discovered at 95% and 68% confidence based on a chi squared + distribution. +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + Types and nested modules +

                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + + + CustomOptimisationMethod + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + + + EstimateFunction<'data, 'time, 'subject> + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + interval nParam mle limit trace + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + interval nParam mle limit trace +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                                    + + + nParam + + : + int + +
                                                                                                                                                                                                                                                                                                    + + + mle + + : + float + +
                                                                                                                                                                                                                                                                                                    + + + limit + + : + float + +
                                                                                                                                                                                                                                                                                                    + + + trace + + : + (float * float[]) list + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + (float * float)[] + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + nParam + + : + int +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + mle + + : + float +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + limit + + : + float +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + trace + + : + (float * float[]) list +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + (float * float)[] +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + profile fit engine subject hypothesis n result + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + profile fit engine subject hypothesis n result +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                  + + Returns: + Map<ShortCode, ConfidenceInterval> + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                  + The profile likelihood method samples the likelihood space + around the Maximum Likelihood Estimate +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + fit + + : + EstimationEngine<float, 'a> -> EndCondition<float> -> 'b -> ModelSystem -> EstimationResult +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + engine + + : + EstimationEngine<float, 'a> +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + subject + + : + 'b +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + hypothesis + + : + ModelSystem +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + n + + : + int +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + result + + : + EstimationResult +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + Map<ShortCode, ConfidenceInterval> +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-confidenceinterval.html b/reference/bristlecone-optimisation-confidenceinterval.html new file mode 100644 index 0000000..1e37f52 --- /dev/null +++ b/reference/bristlecone-optimisation-confidenceinterval.html @@ -0,0 +1,483 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Optimisation.ConfidenceInterval | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + Bristlecone.Optimisation.ConfidenceInterval Namespace +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + Contains functions for calculating confidence intervals on model fits. +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                    + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + + + Bounds + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                    + Differences in likelihood for different confidence intervals + based on a chi squared distribution. +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + + + ConfidenceInterval + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                    + + + The 95% and 68% confidence interval around a point estimate. + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + + + Interval + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + + + OptimisationEventStash + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                    + Keeps a list of all optimisation events that occur for further analysis. +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + + + ProfileLikelihood + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                    + Given a maximum likelihood estimate (MLE), the profile likelihood method + runs a Monte Carlo algorithm that samples around the MLE. The range for + each parameter is discovered at 95% and 68% confidence based on a chi squared + distribution. +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-endconditions.html b/reference/bristlecone-optimisation-endconditions.html new file mode 100644 index 0000000..e2c086d --- /dev/null +++ b/reference/bristlecone-optimisation-endconditions.html @@ -0,0 +1,764 @@ + + + + + + + + + + + + + + + + + + EndConditions (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      + EndConditions Module +

                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                      + + + afterIteration iteration arg2 currentIteration + + +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + Full Usage: + afterIteration iteration arg2 currentIteration +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                        + + + iteration + + : + int + +
                                                                                                                                                                                                                                                                                                        + + + arg1 + + : + Solution<float> list + +
                                                                                                                                                                                                                                                                                                        + + + currentIteration + + : + int + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                      + End the optimisation procedure when a minimum number of iterations is exceeded. +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + iteration + + : + int +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + arg1 + + : + Solution<float> list +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + currentIteration + + : + int +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                      + + + convergence thin chainCount + + +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + Full Usage: + convergence thin chainCount +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                        + + + thin + + : + int + +
                                                                                                                                                                                                                                                                                                        + + + chainCount + + : + int + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + EndCondition<float> + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                      + Convergence of results using the Gelman-Rubin Rhat statistic. + * `thin` - Only test for convergence at multiples of the following intervals (when all chains are ready). + * `chainCount` - The number of chains to test for convergence. This makes the agent wait until results for all chains are in. +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + thin + + : + int +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + chainCount + + : + int +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + + EndCondition<float> +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                      + + + stationarySquaredJumpDistance + + +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + Full Usage: + stationarySquaredJumpDistance +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + EndCondition<float> + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                      + True if there is no significant slope in mean squared jumping distances (MSJD), + binned per 200 iterations and a regression of five bins. +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + + EndCondition<float> +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                      + + + stationarySquaredJumpDistance' fixedBin pointsRequired results arg4 + + +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + Full Usage: + stationarySquaredJumpDistance' fixedBin pointsRequired results arg4 +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                        + + + fixedBin + + : + int + +
                                                                                                                                                                                                                                                                                                        + + + pointsRequired + + : + int + +
                                                                                                                                                                                                                                                                                                        + + + results + + : + Solution<float> list + +
                                                                                                                                                                                                                                                                                                        + + + arg3 + + : + int + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                      + An `EndCondition` that calculates that segregates the most recent n results into + five bins, and runs a regression to detect a temporal variation in the mean + squared jumping distance (MSJD). The significance of the slope coefficient of a linear + regression is assessed to determine if the MSJD is increasing through time for every + parameter sequentially: if all p-values are >0.1, then the `EndCondition` is true. +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + fixedBin + + : + int +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + pointsRequired + + : + int +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + results + + : + Solution<float> list +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + arg3 + + : + int +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html b/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html new file mode 100644 index 0000000..d52e831 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-filzbach-filzbachsettings-1.html @@ -0,0 +1,533 @@ + + + + + + + + + + + + + + + + + + FilzbachSettings<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        + FilzbachSettings<'a> Type +

                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        + Record fields +

                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                        + Record Field + + Description +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                        + + + BurnLength + + +

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + Full Usage: + BurnLength +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + EndCondition<'a> + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + + EndCondition<'a> +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                        + + + MaxScaleChange + + +

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + Full Usage: + MaxScaleChange +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                        + + + MinScaleChange + + +

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + Full Usage: + MinScaleChange +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                        + + + TuneAfterChanges + + +

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + Full Usage: + TuneAfterChanges +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + int + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + Field type: + + int +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-filzbach.html b/reference/bristlecone-optimisation-montecarlo-filzbach.html new file mode 100644 index 0000000..9ffe3ae --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-filzbach.html @@ -0,0 +1,656 @@ + + + + + + + + + + + + + + + + + + Filzbach (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          + Filzbach Module +

                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          + An adaptation of the Filzbach method (originally by Drew Purves) +

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          + Types +

                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                          + Type + + Description +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          + + + FilzbachSettings<'a> + + +

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                          + + + filzbach settings + + +

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + Full Usage: + filzbach settings +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                                                          + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                          + A Monte Carlo Markov Chain sampler based on the 'Filzbach' algorithm from + Microsoft Research Cambridge. +

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + settings + + : + FilzbachSettings<float> +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                          + + + filzbach' settings theta random writeOut sampleEnd domain f + + +

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + Full Usage: + filzbach' settings theta random writeOut sampleEnd domain f +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                                                          + + Returns: + Solution<float> list + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + settings + + : + FilzbachSettings<float> +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + theta + + : + float[] +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + random + + : + Random +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + sampleEnd + + : + EndCondition<float> +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + domain + + : + Domain +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + f + + : + Objective<float> +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + Returns: + + Solution<float> list +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-frequency.html b/reference/bristlecone-optimisation-montecarlo-frequency.html new file mode 100644 index 0000000..191b990 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-frequency.html @@ -0,0 +1,368 @@ + + + + + + + + + + + + + + + + + + Frequency (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            + Frequency Type +

                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-metropoliswithingibbs.html b/reference/bristlecone-optimisation-montecarlo-metropoliswithingibbs.html new file mode 100644 index 0000000..fea64c4 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-metropoliswithingibbs.html @@ -0,0 +1,851 @@ + + + + + + + + + + + + + + + + + + MetropolisWithinGibbs (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              + MetropolisWithinGibbs Module +

                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                              + + + core isAdaptive writeOut random domain f results batchLength batchNumber theta sigmas + + +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + Full Usage: + core isAdaptive writeOut random domain f results batchLength batchNumber theta sigmas +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                + + + isAdaptive + + : + bool + +
                                                                                                                                                                                                                                                                                                                + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                + + + domain + + : + ('a * 'b * Constraint)[] + +
                                                                                                                                                                                                                                                                                                                + + + f + + : + float[] -> float + +
                                                                                                                                                                                                                                                                                                                + + + results + + : + (float * float[]) list + +
                                                                                                                                                                                                                                                                                                                + + + batchLength + + : + int + +
                                                                                                                                                                                                                                                                                                                + + + batchNumber + + : + int + +
                                                                                                                                                                                                                                                                                                                + + + theta + + : + float[] + +
                                                                                                                                                                                                                                                                                                                + + + sigmas + + : + float[] + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + Returns: + int * (float * float[]) list * float[] + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                              + Adaptive-metropolis-within-Gibbs algorithm, which can work in both adaptive and fixed modes +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + isAdaptive + + : + bool +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + random + + : + Random +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + domain + + : + ('a * 'b * Constraint)[] +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + f + + : + float[] -> float +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + results + + : + (float * float[]) list +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + batchLength + + : + int +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + batchNumber + + : + int +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + theta + + : + float[] +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + sigmas + + : + float[] +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + Returns: + + int * (float * float[]) list * float[] +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                              + + + propose theta j lsj domain random + + +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + Full Usage: + propose theta j lsj domain random +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                + + + theta + + : + float[] + +
                                                                                                                                                                                                                                                                                                                + + + j + + : + int + +
                                                                                                                                                                                                                                                                                                                + + + lsj + + : + float + +
                                                                                                                                                                                                                                                                                                                + + + domain + + : + ('a * 'b * Constraint)[] + +
                                                                                                                                                                                                                                                                                                                + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                              + Propose a jump, while leaving all but one parameter value fixed +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + theta + + : + float[] +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + j + + : + int +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + lsj + + : + float +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + domain + + : + ('a * 'b * Constraint)[] +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + random + + : + Random +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                              + + + tune sigma acceptanceRate batchNumber + + +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + Full Usage: + tune sigma acceptanceRate batchNumber +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                + + + sigma + + : + float + +
                                                                                                                                                                                                                                                                                                                + + + acceptanceRate + + : + float + +
                                                                                                                                                                                                                                                                                                                + + + batchNumber + + : + int + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + Returns: + float + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                              + Tune variance of a parameter based on its acceptance rate. + The magnitude of tuning reduces as more batches have been run. +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + sigma + + : + float +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + acceptanceRate + + : + float +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + batchNumber + + : + int +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + Returns: + + float +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-randomwalk.html b/reference/bristlecone-optimisation-montecarlo-randomwalk.html new file mode 100644 index 0000000..a097603 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-randomwalk.html @@ -0,0 +1,562 @@ + + + + + + + + + + + + + + + + + + RandomWalk (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                + RandomWalk Module +

                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                + + + randomWalk' initialCovariance initialScale theta tuningSteps random writeOut endCondition domain f + + +

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + Full Usage: + randomWalk' initialCovariance initialScale theta tuningSteps random writeOut endCondition domain f +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                  + + + initialCovariance + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                  + + + initialScale + + : + float + +
                                                                                                                                                                                                                                                                                                                  + + + theta + + : + Point<float> + +
                                                                                                                                                                                                                                                                                                                  + + + tuningSteps + + : + TuneStep<float> seq + +
                                                                                                                                                                                                                                                                                                                  + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                  + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                  + + + endCondition + + : + EndCondition<float> + +
                                                                                                                                                                                                                                                                                                                  + + + domain + + : + Domain + +
                                                                                                                                                                                                                                                                                                                  + + + f + + : + Objective<float> + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + Returns: + (float * float[]) list * (Matrix<float> * float) + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + initialCovariance + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + initialScale + + : + float +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + theta + + : + Point<float> +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + tuningSteps + + : + TuneStep<float> seq +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + endCondition + + : + EndCondition<float> +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + domain + + : + Domain +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + f + + : + Objective<float> +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + Returns: + + (float * float[]) list * (Matrix<float> * float) +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html new file mode 100644 index 0000000..7525538 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-annealsettings-1.html @@ -0,0 +1,786 @@ + + + + + + + + + + + + + + + + + + AnnealSettings<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  + AnnealSettings<'a> Type +

                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  + Represents configurable settings of an annealing procedure + that supports (a) heating, followed by (b) annealing. +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  + Record fields +

                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                  + Record Field + + Description +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + AnnealStepLength + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + AnnealStepLength +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + EndCondition<'a> + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + EndCondition<'a> +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + BoilingAcceptanceRate + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + BoilingAcceptanceRate +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + float + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + float +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + HeatRamp + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + HeatRamp +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + float -> float + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + float -> float +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + HeatStepLength + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + HeatStepLength +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + EndCondition<'a> + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + EndCondition<'a> +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + InitialTemperature + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + InitialTemperature +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + float + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + float +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + PreTuneLength + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + PreTuneLength +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + int + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + int +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + TemperatureCeiling + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + TemperatureCeiling +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + float option + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + float option +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + TuneLength + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + TuneLength +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + int + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + int +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + TuneN + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + TuneN +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + int + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Field type: + + int +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  + Static members +

                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                  + Static member + + Description +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                  + + + AnnealSettings.Default + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + Full Usage: + AnnealSettings.Default +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Returns: + AnnealSettings<float> + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + Returns: + + AnnealSettings<float> +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-simulatedannealing-coolingschemes.html b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-coolingschemes.html new file mode 100644 index 0000000..b0dc36c --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-coolingschemes.html @@ -0,0 +1,595 @@ + + + + + + + + + + + + + + + + + + CoolingSchemes (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    + CoolingSchemes Module +

                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    + Cooling schemes dictate the conditions under which the temperature is cooled + during simulated annealing. +

                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                    + + + exponential alpha t0 t k + + +

                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + Full Usage: + exponential alpha t0 t k +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                      + + + alpha + + : + float + +
                                                                                                                                                                                                                                                                                                                      + + + t0 + + : + 'a + +
                                                                                                                                                                                                                                                                                                                      + + + t + + : + float + +
                                                                                                                                                                                                                                                                                                                      + + + k + + : + 'b + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                    + Commonly set alpha to 0.95. + Tk is the temperature after k cooling iterations. +

                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + alpha + + : + float +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + t0 + + : + 'a +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + t + + : + float +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + k + + : + 'b +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                    + + + fastCauchyCoolingSchedule t0 t k + + +

                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + Full Usage: + fastCauchyCoolingSchedule t0 t k +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                      + + + t0 + + : + float + +
                                                                                                                                                                                                                                                                                                                      + + + t + + : + 'a + +
                                                                                                                                                                                                                                                                                                                      + + + k + + : + int + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + t0 + + : + float +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + t + + : + 'a +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + k + + : + int +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html new file mode 100644 index 0000000..90588dc --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-endconditions.html @@ -0,0 +1,679 @@ + + + + + + + + + + + + + + + + + + EndConditions (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      + EndConditions Module +

                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                      + + + defaultTolerance + + +

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + Full Usage: + defaultTolerance +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                      + + + improvementCount count interval results iteration + + +

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + Full Usage: + improvementCount count interval results iteration +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                        + + + count + + : + int + +
                                                                                                                                                                                                                                                                                                                        + + + interval + + : + int + +
                                                                                                                                                                                                                                                                                                                        + + + results + + : + Solution<float> list + +
                                                                                                                                                                                                                                                                                                                        + + + iteration + + : + int + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + count + + : + int +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + interval + + : + int +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + results + + : + Solution<float> list +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + iteration + + : + int +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                      + + + noImprovement chain + + +

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + Full Usage: + noImprovement chain +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                        + + + chain + + : + Solution<float> list + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + chain + + : + Solution<float> list +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                      + + + stoppedImproving chains minimums + + +

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + Full Usage: + stoppedImproving chains minimums +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                        + + + chains + + : + int + +
                                                                                                                                                                                                                                                                                                                        + + + minimums + + : + Solution<float> list + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                      + Given a list of solutions, which are ordered most recent first, + returns `true` if there are at least `chains` recent results, and + the change within the recent results is no more than `tolerance`. +

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + chains + + : + int +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + minimums + + : + Solution<float> list +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-simulatedannealing-machines.html b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-machines.html new file mode 100644 index 0000000..3e555c6 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-simulatedannealing-machines.html @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + Machines (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        + Machines Module +

                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        + Functions and values +

                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                        + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                        + + + boltzmann t e + + +

                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + Full Usage: + boltzmann t e +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                          + + + t + + : + float + +
                                                                                                                                                                                                                                                                                                                          + + + e + + : + float + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                        + e = new minus old energy (or -logL) +

                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + t + + : + float +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + e + + : + float +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html b/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html new file mode 100644 index 0000000..253c1e3 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-simulatedannealing.html @@ -0,0 +1,1747 @@ + + + + + + + + + + + + + + + + + + SimulatedAnnealing (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + SimulatedAnnealing Module +

                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + A meta-heuristic that approximates a global optimium by + simulating slow cooling as a slow decrease in the probability + of temporarily accepting worse solutions. +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + Types and nested modules +

                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                          + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + + + CoolingSchemes + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Cooling schemes dictate the conditions under which the temperature is cooled + during simulated annealing. +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + + + EndConditions + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + + + Machines + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + + + AnnealSettings<'a> + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Represents configurable settings of an annealing procedure + that supports (a) heating, followed by (b) annealing. +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          + + + anneal writeOut chainEnd annealEnd cool markov temperature (arg7, arg8) previousBests + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Full Usage: + anneal writeOut chainEnd annealEnd cool markov temperature (arg7, arg8) previousBests +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                            + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                            + + + chainEnd + + : + 'a + +
                                                                                                                                                                                                                                                                                                                            + + + annealEnd + + : + 'b + +
                                                                                                                                                                                                                                                                                                                            + + + cool + + : + float -> int -> float + +
                                                                                                                                                                                                                                                                                                                            + + + markov + + : + 'a -> float -> float * 'c -> (float * 'c) list + +
                                                                                                                                                                                                                                                                                                                            + + + temperature + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + arg6 + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + arg7 + + : + 'c + +
                                                                                                                                                                                                                                                                                                                            + + + previousBests + + : + (float * 'c) list + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + (float * 'c) list + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Cool between homoegenous markov chains according to `cool` schedule. + Each anneal recursion begins from the end of the previous markov chain. +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + chainEnd + + : + 'a +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + annealEnd + + : + 'b +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + cool + + : + float -> int -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + markov + + : + 'a -> float -> float * 'c -> (float * 'c) list +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + temperature + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + arg6 + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + arg7 + + : + 'c +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + previousBests + + : + (float * 'c) list +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + + (float * 'c) list +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          + + + classicalSimulatedAnnealing scale tDependentProposal settings + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Full Usage: + classicalSimulatedAnnealing scale tDependentProposal settings +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                            + + + scale + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + tDependentProposal + + : + bool + +
                                                                                                                                                                                                                                                                                                                            + + + settings + + : + AnnealSettings<float> + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Candidate distribution: Gaussian univariate [] + Probability: Boltzmann Machine +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + scale + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + tDependentProposal + + : + bool +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + settings + + : + AnnealSettings<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          + + + fastSimulatedAnnealing scale tDependentProposal settings + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Full Usage: + fastSimulatedAnnealing scale tDependentProposal settings +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                            + + + scale + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + tDependentProposal + + : + bool + +
                                                                                                                                                                                                                                                                                                                            + + + settings + + : + AnnealSettings<float> + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Candidate distribution: Cauchy univariate [] + Probability: Bottzmann Machine +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + scale + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + tDependentProposal + + : + bool +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + settings + + : + AnnealSettings<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          + + + heat write endCondition ceiling endAcceptanceRate heatingSchedule markov (arg7, arg8) temperature + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Full Usage: + heat write endCondition ceiling endAcceptanceRate heatingSchedule markov (arg7, arg8) temperature +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                            + + + write + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                            + + + endCondition + + : + 'a + +
                                                                                                                                                                                                                                                                                                                            + + + ceiling + + : + float option + +
                                                                                                                                                                                                                                                                                                                            + + + endAcceptanceRate + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + heatingSchedule + + : + float -> float + +
                                                                                                                                                                                                                                                                                                                            + + + markov + + : + 'a -> float -> float * 'b -> (float * 'b) list + +
                                                                                                                                                                                                                                                                                                                            + + + arg6 + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + arg7 + + : + 'b + +
                                                                                                                                                                                                                                                                                                                            + + + temperature + + : + float + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + float * (float * 'b) + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Heat up temperature until acceptance rate of bad moves is above the threshold `endAcceptanceRate`. + If it becomes impossible to propose a move during heating, then heating ends. +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + write + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + endCondition + + : + 'a +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + ceiling + + : + float option +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + endAcceptanceRate + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + heatingSchedule + + : + float -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + markov + + : + 'a -> float -> float * 'b -> (float * 'b) list +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + arg6 + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + arg7 + + : + 'b +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + temperature + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + + float * (float * 'b) +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          + + + markovChain writeOut atEnd propose probability random f temperature (arg8, arg9) + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Full Usage: + markovChain writeOut atEnd propose probability random f temperature (arg8, arg9) +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                            + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                            + + + atEnd + + : + Solution<float> list -> int -> bool + +
                                                                                                                                                                                                                                                                                                                            + + + propose + + : + Point<float> -> Point<float> + +
                                                                                                                                                                                                                                                                                                                            + + + probability + + : + 'a -> float -> float + +
                                                                                                                                                                                                                                                                                                                            + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                            + + + f + + : + Point<float> -> float + +
                                                                                                                                                                                                                                                                                                                            + + + temperature + + : + 'a + +
                                                                                                                                                                                                                                                                                                                            + + + arg7 + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + arg8 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + Solution<float> list + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Run a homogenous Markov chain recursively until an end condition - `atEnd` - is met. +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + atEnd + + : + Solution<float> list -> int -> bool +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + propose + + : + Point<float> -> Point<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + probability + + : + 'a -> float -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + f + + : + Point<float> -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + temperature + + : + 'a +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + arg7 + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + arg8 + + : + Point<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + + Solution<float> list +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          + + + simulatedAnnealing scale settings annealEnd machine jump cool random writeOut domain startPoint f + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Full Usage: + simulatedAnnealing scale settings annealEnd machine jump cool random writeOut domain startPoint f +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                            + + + scale + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + settings + + : + AnnealSettings<float> + +
                                                                                                                                                                                                                                                                                                                            + + + annealEnd + + : + 'a + +
                                                                                                                                                                                                                                                                                                                            + + + machine + + : + float -> float -> float + +
                                                                                                                                                                                                                                                                                                                            + + + jump + + : + Random -> float -> float -> unit -> float + +
                                                                                                                                                                                                                                                                                                                            + + + cool + + : + float -> float -> int -> float + +
                                                                                                                                                                                                                                                                                                                            + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                            + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                            + + + domain + + : + Domain + +
                                                                                                                                                                                                                                                                                                                            + + + startPoint + + : + 'b + +
                                                                                                                                                                                                                                                                                                                            + + + f + + : + float[] -> float + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + (float * Point<float>) list + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + scale + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + settings + + : + AnnealSettings<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + annealEnd + + : + 'a +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + machine + + : + float -> float -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + jump + + : + Random -> float -> float -> unit -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + cool + + : + float -> float -> int -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + domain + + : + Domain +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + startPoint + + : + 'b +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + f + + : + float[] -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + + (float * Point<float>) list +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                          + + + tryMove propose probability random f tries (l1, theta1) + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Full Usage: + tryMove propose probability random f tries (l1, theta1) +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                            + + + propose + + : + Point<float> -> Point<float> + +
                                                                                                                                                                                                                                                                                                                            + + + probability + + : + float -> float + +
                                                                                                                                                                                                                                                                                                                            + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                            + + + f + + : + Point<float> -> float + +
                                                                                                                                                                                                                                                                                                                            + + + tries + + : + int + +
                                                                                                                                                                                                                                                                                                                            + + + l1 + + : + float + +
                                                                                                                                                                                                                                                                                                                            + + + theta1 + + : + Point<float> + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + Solution<float> option + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                          + Jump based on a proposal function and probability function +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + propose + + : + Point<float> -> Point<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + probability + + : + float -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + f + + : + Point<float> -> float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + tries + + : + int +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + l1 + + : + float +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + theta1 + + : + Point<float> +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + Returns: + + Solution<float> option +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-tunemethod.html b/reference/bristlecone-optimisation-montecarlo-tunemethod.html new file mode 100644 index 0000000..1c08c86 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-tunemethod.html @@ -0,0 +1,563 @@ + + + + + + + + + + + + + + + + + + TuneMethod (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            + TuneMethod Type +

                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            + Union cases +

                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                            + Union case + + Description +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                            + + + Covariance float + + +

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + Full Usage: + Covariance float +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                              + + + Item + + : + float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + Item + + : + float +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                            + + + CovarianceWithScale float + + +

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + Full Usage: + CovarianceWithScale float +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                              + + + Item + + : + float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + Item + + : + float +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                            + + + CovarianceWithScaleTotalHistory float + + +

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + Full Usage: + CovarianceWithScaleTotalHistory float +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                              + + + Item + + : + float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + Item + + : + float +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                            + + + Scale + + +

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + Full Usage: + Scale +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo-tuningmode.html b/reference/bristlecone-optimisation-montecarlo-tuningmode.html new file mode 100644 index 0000000..086a5a7 --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo-tuningmode.html @@ -0,0 +1,2119 @@ + + + + + + + + + + + + + + + + + + TuningMode (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              + TuningMode Module +

                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + computeCovariance matrix + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + computeCovariance matrix +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + matrix + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Calculates the covariance of a given matrix +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + matrix + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + covariance tuneInterval weighting remaining history scale + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + covariance tuneInterval weighting remaining history scale +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + tuneInterval + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + weighting + + : + float + +
                                                                                                                                                                                                                                                                                                                                + + + remaining + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + history + + : + (float * float[]) seq + +
                                                                                                                                                                                                                                                                                                                                + + + scale + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Tune previously observed covariance based on most recent period +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + tuneInterval + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + weighting + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + remaining + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + history + + : + (float * float[]) seq +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + scale + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + covarianceAllTime weighting history scale + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + covarianceAllTime weighting history scale +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + weighting + + : + float + +
                                                                                                                                                                                                                                                                                                                                + + + history + + : + (float * float[]) seq + +
                                                                                                                                                                                                                                                                                                                                + + + scale + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Tune previously observed covariance based on all time +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + weighting + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + history + + : + (float * float[]) seq +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + scale + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + covarianceFromBounds n domain random + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + covarianceFromBounds n domain random +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + domain + + : + Domain + +
                                                                                                                                                                                                                                                                                                                                + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + n + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + domain + + : + Domain +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + covarianceFromSigmas n random sigmas + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + covarianceFromSigmas n random sigmas +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                                + + + sigmas + + : + float[] + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + n + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + sigmas + + : + float[] +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + covarianceMatrix parameterCount scale + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + covarianceMatrix parameterCount scale +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + parameterCount + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + scale + + : + float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Generate a covariance matrix +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + parameterCount + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + scale + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + covarianceOnly tuneInterval weighting remaining history (arg5, arg6) + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + covarianceOnly tuneInterval weighting remaining history (arg5, arg6) +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + tuneInterval + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + weighting + + : + float + +
                                                                                                                                                                                                                                                                                                                                + + + remaining + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + history + + : + (float * float[]) seq + +
                                                                                                                                                                                                                                                                                                                                + + + arg4 + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                + + + arg5 + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> * 'a + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + tuneInterval + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + weighting + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + remaining + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + history + + : + (float * float[]) seq +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg4 + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg5 + + : + 'a +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> * 'a +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + defaultCovariance n + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + defaultCovariance n +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + The starting covariance matrix for parameters in a multivariate distribution +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + n + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + dual tuneInterval weighting remaining history (arg5, arg6) + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + dual tuneInterval weighting remaining history (arg5, arg6) +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + tuneInterval + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + weighting + + : + float + +
                                                                                                                                                                                                                                                                                                                                + + + remaining + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + history + + : + (float * float[]) seq + +
                                                                                                                                                                                                                                                                                                                                + + + arg4 + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                + + + arg5 + + : + float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> * float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + tuneInterval + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + weighting + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + remaining + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + history + + : + (float * float[]) seq +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg4 + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg5 + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> * float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + dualTotalHistory tuneInterval weighting remaining history (arg5, arg6) + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + dualTotalHistory tuneInterval weighting remaining history (arg5, arg6) +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + tuneInterval + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + weighting + + : + float + +
                                                                                                                                                                                                                                                                                                                                + + + remaining + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + history + + : + (float * float[]) seq + +
                                                                                                                                                                                                                                                                                                                                + + + arg4 + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                + + + arg5 + + : + float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> * float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + tuneInterval + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + weighting + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + remaining + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + history + + : + (float * float[]) seq +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg4 + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg5 + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> * float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + none arg1 arg2 factors + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + none arg1 arg2 factors +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + arg0 + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                + + + arg1 + + : + 'b + +
                                                                                                                                                                                                                                                                                                                                + + + factors + + : + 'c + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + 'c + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg0 + + : + 'a +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg1 + + : + 'b +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + factors + + : + 'c +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + 'c +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + samplesToMatrix samples + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + samplesToMatrix samples +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + samples + + : + float[][] + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Parameters to matrix +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + samples + + : + float[][] +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + scaleFactor tuneInterval remainingIterations history scale + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + scaleFactor tuneInterval remainingIterations history scale +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + tuneInterval + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + remainingIterations + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + history + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                                                + + + scale + + : + float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Modifies a scale factor depending on +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + tuneInterval + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + remainingIterations + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + history + + : + 'a seq +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + scale + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + scaleOnly tuneInterval remaining history (arg4, arg5) + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + scaleOnly tuneInterval remaining history (arg4, arg5) +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + tuneInterval + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + remaining + + : + int + +
                                                                                                                                                                                                                                                                                                                                + + + history + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                                                + + + arg3 + + : + 'b + +
                                                                                                                                                                                                                                                                                                                                + + + arg4 + + : + float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + 'b * float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + tuneInterval + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + remaining + + : + int +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + history + + : + 'a seq +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg3 + + : + 'b +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + arg4 + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + 'b * float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + tuneCovariance weight recentCovariance oldCovariance + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + tuneCovariance weight recentCovariance oldCovariance +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + weight + + : + float + +
                                                                                                                                                                                                                                                                                                                                + + + recentCovariance + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                + + + oldCovariance + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Tunes a covariance matrix based on recent samples. +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + weight + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + recentCovariance + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + oldCovariance + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                              + + + tuneScale scale accRate + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Full Usage: + tuneScale scale accRate +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                + + + scale + + : + float + +
                                                                                                                                                                                                                                                                                                                                + + + accRate + + : + float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                              + Find an appropriate scale factor for a standard deviation and its acceptance rate. +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + scale + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + accRate + + : + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-montecarlo.html b/reference/bristlecone-optimisation-montecarlo.html new file mode 100644 index 0000000..3f2743f --- /dev/null +++ b/reference/bristlecone-optimisation-montecarlo.html @@ -0,0 +1,1871 @@ + + + + + + + + + + + + + + + + + + MonteCarlo (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + MonteCarlo Module +

                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + A module containing Monte Carlo Markov Chain (MCMC) methods for optimisation. + An introduction to MCMC approaches is provided by + [Reali, Priami, and Marchetti (2017)](https://doi.org/10.3389/fams.2017.00006) +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + Types and nested modules +

                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + + + Filzbach + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + An adaptation of the Filzbach method (originally by Drew Purves) +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + + + MetropolisWithinGibbs + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + + + RandomWalk + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + + + SimulatedAnnealing + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + A meta-heuristic that approximates a global optimium by + simulating slow cooling as a slow decrease in the probability + of temporarily accepting worse solutions. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + + + TuningMode + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + + + Frequency + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + + + TuneMethod + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + ``Adaptive-Metropolis-withinGibbs`` + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + ``Adaptive-Metropolis-withinGibbs`` +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + An adaptive Metropolis-within-Gibbs sampler that tunes the variance of + each parameter according to the per-parameter acceptance rate. + Reference: Bai Y (2009). “An Adaptive Directional Metropolis-within-Gibbs Algorithm.” + Technical Report in Department of Statistics at the University of Toronto. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + ``Automatic(AdaptiveDiagnostics)`` + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + ``Automatic(AdaptiveDiagnostics)`` +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + Implementation similar to that proposed by Yang and Rosenthal: "Automatically Tuned + General-Purpose MCMC via New Adaptive Diagnostics" + Reference: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.70.7198&rep=rep1&type=pdf +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + ``Metropolis-withinGibbs`` + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + ``Metropolis-withinGibbs`` +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + A non-adaptive Metropolis-within-gibbs Sampler. Each parameter is updated + individually, unlike the random walk algorithm. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + adaptiveMetropolis weighting period + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + adaptiveMetropolis weighting period +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + weighting + + : + float + +
                                                                                                                                                                                                                                                                                                                                  + + + period + + : + Frequency + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + A Markov Chain Monte Carlo (MCMC) sampling algorithm that continually adjusts the + covariance matrix based on the recently-sampled posterior distribution. Proposed + jumps are therefore tuned to the recent history of accepted jumps. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + weighting + + : + float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + period + + : + Frequency +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + constrainJump initial jump scaleFactor c + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + constrainJump initial jump scaleFactor c +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + initial + + : + float + +
                                                                                                                                                                                                                                                                                                                                  + + + jump + + : + float + +
                                                                                                                                                                                                                                                                                                                                  + + + scaleFactor + + : + float + +
                                                                                                                                                                                                                                                                                                                                  + + + c + + : + Constraint + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + Jump in parameter space while reflecting constraints. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + initial + + : + float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + jump + + : + float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + scaleFactor + + : + float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + c + + : + Constraint +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + initialise d rng + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + initialise d rng +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + Generate a random point from bounds specified as a `Domain`. + A value for each dimension is drawn from a univariate normal distribution, assuming that + the bounds represent the 99th percentiles of the distribution. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + d + + : + Domain +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + rng + + : + Random +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + isInvalidTheta theta constraints + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + isInvalidTheta theta constraints +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + theta + + : + float seq + +
                                                                                                                                                                                                                                                                                                                                  + + + constraints + + : + Constraint seq + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + Assesses if theta is valid based on the provided + constraints. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + theta + + : + float seq +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + constraints + + : + Constraint seq +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + metropolisHastings' random writeOut endCondition propose tune f theta1 l1 d scale iteration + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + metropolisHastings' random writeOut endCondition propose tune f theta1 l1 d scale iteration +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                                  + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                                  + + + endCondition + + : + (float * float[]) list -> int -> bool + +
                                                                                                                                                                                                                                                                                                                                  + + + propose + + : + 'a -> float[] -> float[] + +
                                                                                                                                                                                                                                                                                                                                  + + + tune + + : + int -> (float * float[]) list -> 'a -> 'a + +
                                                                                                                                                                                                                                                                                                                                  + + + f + + : + float[] -> float + +
                                                                                                                                                                                                                                                                                                                                  + + + theta1 + + : + float[] + +
                                                                                                                                                                                                                                                                                                                                  + + + l1 + + : + float + +
                                                                                                                                                                                                                                                                                                                                  + + + d + + : + (float * float[]) list + +
                                                                                                                                                                                                                                                                                                                                  + + + scale + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                  + + + iteration + + : + int + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + (float * float[]) list * 'a + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                 A recursive metropolis hastings algorithm that ends when `endCondition` returns true.
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + **Parameters**
                                                                                                                                                                                                                                                                                                                                +   * `random` - `System.Random` to be used for drawing from a uniform distribution.
                                                                                                                                                                                                                                                                                                                                +   * `writeOut` - side-effect function for handling `LogEvent` items.
                                                                                                                                                                                                                                                                                                                                +   * `endCondition` - `EndCondition` that dictates when the MH algorithm ends.
                                                                                                                                                                                                                                                                                                                                +   * `propose` - proposal `'scale -> 'theta -> 'theta` that generates a jump based on the scale value.
                                                                                                                                                                                                                                                                                                                                +   * `tune` - parameter of type `int -> (float * 'a) list -> 'b -> 'b`, where `int` is current iteration,
                                                                                                                                                                                                                                                                                                                                +   * `f` - an objective function, `'a -> float`, to optimise.
                                                                                                                                                                                                                                                                                                                                +   * `theta1` - initial position in parameter space of type `'a`.
                                                                                                                                                                                                                                                                                                                                +   * `l1` - initial value of -log likelihood at theta1 in parameter space
                                                                                                                                                                                                                                                                                                                                +   * `d` - history of the chain, of type `(float * 'a) list`. Passing a list here allows continuation of a previous analysis.
                                                                                                                                                                                                                                                                                                                                +   * `scale` - a scale of type `'b`, which is compatible with the scale tuning function `tune`
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + **Output Type**
                                                                                                                                                                                                                                                                                                                                +   * `(float * 'a) list * 'b` - A tuple containing a list of results, and the final scale used in
                                                                                                                                                                                                                                                                                                                                +   the analysis. The `(float * 'a) list` represents a list of paired -log likelihood values with
                                                                                                                                                                                                                                                                                                                                +   the proposed theta.
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + endCondition + + : + (float * float[]) list -> int -> bool +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + propose + + : + 'a -> float[] -> float[] +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + tune + + : + int -> (float * float[]) list -> 'a -> 'a +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + f + + : + float[] -> float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + theta1 + + : + float[] +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + l1 + + : + float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + d + + : + (float * float[]) list +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + scale + + : + 'a +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + iteration + + : + int +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + (float * float[]) list * 'a +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + randomWalk tuningSteps + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + randomWalk tuningSteps +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + tuningSteps + + : + TuneStep<float> seq + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + A Markov Chain Monte Carlo (MCMC) sampling algorithm that randomly 'walks' + through a n-dimensional posterior distribution of the parameter space. + Specify `tuningSteps` to prime the jump size before random walk. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + tuningSteps + + : + TuneStep<float> seq +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + randomWalk' tuningSteps random writeOut n domain startPoint f + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + randomWalk' tuningSteps random writeOut n domain startPoint f +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + tuningSteps + + : + TuneStep<float> seq + +
                                                                                                                                                                                                                                                                                                                                  + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                                  + + + writeOut + + : + WriteOut + +
                                                                                                                                                                                                                                                                                                                                  + + + n + + : + EndCondition<float> + +
                                                                                                                                                                                                                                                                                                                                  + + + domain + + : + Domain + +
                                                                                                                                                                                                                                                                                                                                  + + + startPoint + + : + Point<float> option + +
                                                                                                                                                                                                                                                                                                                                  + + + f + + : + float[] -> float + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + Solution<float> list + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + tuningSteps + + : + TuneStep<float> seq +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + writeOut + + : + WriteOut +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + n + + : + EndCondition<float> +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + domain + + : + Domain +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + startPoint + + : + Point<float> option +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + f + + : + float[] -> float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + Solution<float> list +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + toFn method interval + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + toFn method interval +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + method + + : + TuneMethod + +
                                                                                                                                                                                                                                                                                                                                  + + + interval + + : + int + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + int -> (float * float[]) seq -> Matrix<float> * float -> Matrix<float> * float + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + method + + : + TuneMethod +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + interval + + : + int +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + int -> (float * float[]) seq -> Matrix<float> * float -> Matrix<float> * float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                + + + tryGenerateTheta f domain random n + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Full Usage: + tryGenerateTheta f domain random n +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                  + + + f + + : + float[] -> float + +
                                                                                                                                                                                                                                                                                                                                  + + + domain + + : + Domain + +
                                                                                                                                                                                                                                                                                                                                  + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                                  + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + Result<float[], string> + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                + Attempts to generate random theta based on starting bounds + for n tries. If the theta does not meet given constraints, or + `f` evaluates to NaN or an infinity then the algorithm tries again. +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + f + + : + float[] -> float +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + domain + + : + Domain +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + n + + : + int +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + Returns: + + Result<float[], string> +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-none.html b/reference/bristlecone-optimisation-none.html new file mode 100644 index 0000000..a1c2859 --- /dev/null +++ b/reference/bristlecone-optimisation-none.html @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + + None (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  + None Module +

                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                  + + + none + + +

                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + Full Usage: + none +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + Returns: + Optimiser<float> + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                  + An optimisation function that calculates the value of `f` using + the given bounds. Use when optimisation of the objective is not required. +

                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + Returns: + + Optimiser<float> +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation-optimisationerror.html b/reference/bristlecone-optimisation-optimisationerror.html new file mode 100644 index 0000000..b6b647d --- /dev/null +++ b/reference/bristlecone-optimisation-optimisationerror.html @@ -0,0 +1,482 @@ + + + + + + + + + + + + + + + + + + OptimisationError (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    + OptimisationError Type +

                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    + Union cases +

                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                    + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                    + + + LikelihoodError + + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + Full Usage: + LikelihoodError +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                    + + + ModelError + + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + Full Usage: + ModelError +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                    + + + OutOfBounds + + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + Full Usage: + OutOfBounds +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-optimisation.html b/reference/bristlecone-optimisation.html new file mode 100644 index 0000000..02eaac2 --- /dev/null +++ b/reference/bristlecone-optimisation.html @@ -0,0 +1,475 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Optimisation | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      + Bristlecone.Optimisation Namespace +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                      + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      + + + Amoeba + + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                      + Nelder Mead implementation + Adapted from original at: https://github.com/mathias-brandewinder/Amoeba +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      + + + EndConditions + + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      + + + MonteCarlo + + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                      + A module containing Monte Carlo Markov Chain (MCMC) methods for optimisation. + An introduction to MCMC approaches is provided by + [Reali, Priami, and Marchetti (2017)](https://doi.org/10.3389/fams.2017.00006) +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      + + + None + + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      + + + OptimisationError + + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter-constraint.html b/reference/bristlecone-parameter-constraint.html new file mode 100644 index 0000000..243c850 --- /dev/null +++ b/reference/bristlecone-parameter-constraint.html @@ -0,0 +1,457 @@ + + + + + + + + + + + + + + + + + + Constraint (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        + Parameter.Constraint Type +

                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        + Limits a `Parameter` to certain value ranges by + applying mathematical transformations when requested + for 'optimisation space'. +

                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        + Union cases +

                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                        + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                        + + + PositiveOnly + + +

                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + Full Usage: + PositiveOnly +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                        + + + Unconstrained + + +

                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Unconstrained +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter-constraintmode.html b/reference/bristlecone-parameter-constraintmode.html new file mode 100644 index 0000000..bcb8504 --- /dev/null +++ b/reference/bristlecone-parameter-constraintmode.html @@ -0,0 +1,459 @@ + + + + + + + + + + + + + + + + + + ConstraintMode (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          + Parameter.ConstraintMode Type +

                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          + The mode in which constraints are handled by the parameter. + In `Transform` mode, the parameter value is transformed + when requested in 'optimisation space'. Alternatively, + in `Detached` mode, the real parameter value is simply + returned when requested in 'optimisation space'. +

                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          + Union cases +

                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                          + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                          + + + Detached + + +

                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + Full Usage: + Detached +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                          + + + Transform + + +

                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + Full Usage: + Transform +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter-estimation.html b/reference/bristlecone-parameter-estimation.html new file mode 100644 index 0000000..eb65165 --- /dev/null +++ b/reference/bristlecone-parameter-estimation.html @@ -0,0 +1,499 @@ + + + + + + + + + + + + + + + + + + Estimation (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            + Parameter.Estimation Type +

                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            + Union cases +

                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                            + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                            + + + Estimated estimate + + +

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + Full Usage: + Estimated estimate +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                              + + + estimate + + : + float + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + estimate + + : + float +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                            + + + NotEstimated(lowStartingBound, highStartingBound) + + +

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + Full Usage: + NotEstimated(lowStartingBound, highStartingBound) +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                              + + + lowStartingBound + + : + float + +
                                                                                                                                                                                                                                                                                                                                              + + + highStartingBound + + : + float + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + lowStartingBound + + : + float +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + highStartingBound + + : + float +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter-parameter.html b/reference/bristlecone-parameter-parameter.html new file mode 100644 index 0000000..59c24d8 --- /dev/null +++ b/reference/bristlecone-parameter-parameter.html @@ -0,0 +1,362 @@ + + + + + + + + + + + + + + + + + + Parameter (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              + Parameter.Parameter Type +

                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter-pool.html b/reference/bristlecone-parameter-pool.html new file mode 100644 index 0000000..c6ce3dc --- /dev/null +++ b/reference/bristlecone-parameter-pool.html @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + Pool (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                + Parameter.Pool Type +

                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter-poolmodule-parameterpool.html b/reference/bristlecone-parameter-poolmodule-parameterpool.html new file mode 100644 index 0000000..3c8d219 --- /dev/null +++ b/reference/bristlecone-parameter-poolmodule-parameterpool.html @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + ParameterPool (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  + Pool.ParameterPool Type +

                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  + Union cases +

                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                  + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                  + + + Pool CodedMap<Parameter> + + +

                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + Pool CodedMap<Parameter> +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + Item + + : + CodedMap<Parameter> +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter-poolmodule.html b/reference/bristlecone-parameter-poolmodule.html new file mode 100644 index 0000000..4dee70e --- /dev/null +++ b/reference/bristlecone-parameter-poolmodule.html @@ -0,0 +1,1032 @@ + + + + + + + + + + + + + + + + + + Pool (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    + Parameter.Pool Module +

                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    + Contains the `ParameterPool` type, which represents the set of parameters + to be estimated within an analysis. +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    + Types +

                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                    + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    + + + ParameterPool + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.count pool + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.count pool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + int + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                    + The number of parameters in the Pool. +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + int +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.detatchConstraints pool + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.detatchConstraints pool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + ParameterPool * Constraint list + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                    + Flips all parameters in the pool to work in `Detached` mode rather + than `Transformed` mode. +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + ParameterPool * Constraint list +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.fromEstimated pool + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.fromEstimated pool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + ParameterPool + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                    + Create a Pool where all parameters are not estimated. The upper and + lower bounds are set as the estimate from `pool`. +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.fromList list + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.fromList list +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + ParameterPool + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + list + + : + (ShortCode * Parameter) list +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.hasParameter name pool + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.hasParameter name pool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                      + + + name + + : + string + +
                                                                                                                                                                                                                                                                                                                                                      + + + pool + + : + ParameterPool + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Parameter option + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + name + + : + string +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Parameter option +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.map f pool + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.map f pool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + ParameterPool + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + f + + : + ShortCode -> Parameter -> Parameter +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.toList pool + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.toList pool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + (ShortCode * Parameter) list + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + (ShortCode * Parameter) list +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                    + + + Pool.tryGetBoundsForEstimation pool key + + +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Pool.tryGetBoundsForEstimation pool key +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                      + + + pool + + : + ParameterPool + +
                                                                                                                                                                                                                                                                                                                                                      + + + key + + : + string + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + (float * float) option + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                    + Returns the starting bounds in transformed parameter space if + the parameter has not been estimated. If the parameter has already + been estimated, returns None. +

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + key + + : + string +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + (float * float) option +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-parameter.html b/reference/bristlecone-parameter.html new file mode 100644 index 0000000..f26cef6 --- /dev/null +++ b/reference/bristlecone-parameter.html @@ -0,0 +1,987 @@ + + + + + + + + + + + + + + + + + + Parameter (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + Parameter Module +

                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + Types and nested modules +

                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                      + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + + + Pool (Module) + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Contains the `ParameterPool` type, which represents the set of parameters + to be estimated within an analysis. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + + + Constraint + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Limits a `Parameter` to certain value ranges by + applying mathematical transformations when requested + for 'optimisation space'. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + + + ConstraintMode + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + The mode in which constraints are handled by the parameter. + In `Transform` mode, the parameter value is transformed + when requested in 'optimisation space'. Alternatively, + in `Detached` mode, the real parameter value is simply + returned when requested in 'optimisation space'. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + + + Estimation + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + + + Parameter + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + + + Pool (Type) + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      + + + Parameter.bounds p + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Parameter.bounds p +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + (float * float) option + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Bounds are always stored in a parameter in raw form. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + p + + : + Parameter +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + (float * float) option +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      + + + Parameter.create con bound1 bound2 + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Parameter.create con bound1 bound2 +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                        + + + con + + : + Constraint + +
                                                                                                                                                                                                                                                                                                                                                        + + + bound1 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                        + + + bound2 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Parameter option + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Create an estimatable `Parameter` that may be constrained or + unconstrained to a certain value range. Bristlecone draws an + initial value from the given bounds. To retrieve the estimated + parameter value, use `Parameter.finalise`. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + con + + : + Constraint +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + bound1 + + : + float +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + bound2 + + : + float +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Parameter option +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      + + + Parameter.detatchConstraint p + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Parameter.detatchConstraint p +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Parameter * Constraint + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Detaches any constraints such that the parameter's + transformed space equals normal space. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + p + + : + Parameter +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Parameter * Constraint +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      + + + Parameter.getEstimate parameter + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Parameter.getEstimate parameter +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<float, string> + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Retrieve the estimated parameter value for further analysis. + Will only be `Ok` if parameter has been estimated. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + parameter + + : + Parameter +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<float, string> +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                      + + + Parameter.isEstimated parameter + + +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Parameter.isEstimated parameter +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Determines if the parameter has been estimated or not. +

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + parameter + + : + Parameter +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-positiveint.html b/reference/bristlecone-positiveint.html new file mode 100644 index 0000000..d727257 --- /dev/null +++ b/reference/bristlecone-positiveint.html @@ -0,0 +1,426 @@ + + + + + + + + + + + + + + + + + + PositiveInt (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        + PositiveInt Type +

                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        + Instance members +

                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                        + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                        + + + this.Value + + +

                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + this.Value +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + Returns: + int + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + int +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-positiveintmodule-positiveint.html b/reference/bristlecone-positiveintmodule-positiveint.html new file mode 100644 index 0000000..01de2d5 --- /dev/null +++ b/reference/bristlecone-positiveintmodule-positiveint.html @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + PositiveInt (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          + PositiveInt.PositiveInt Type +

                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          + Instance members +

                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                          + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                          + + + this.Value + + +

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + this.Value +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + Returns: + int + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + Returns: + + int +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-positiveintmodule.html b/reference/bristlecone-positiveintmodule.html new file mode 100644 index 0000000..82f2052 --- /dev/null +++ b/reference/bristlecone-positiveintmodule.html @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + PositiveInt (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            + PositiveInt Module +

                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            + Types +

                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                            + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            + + + PositiveInt + + +

                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            + Functions and values +

                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                            + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                            + + + PositiveInt.create i + + +

                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + PositiveInt.create i +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                                              + + + i + + : + int + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + Returns: + PositiveInt option + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + i + + : + int +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + PositiveInt option +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-realtimespan.html b/reference/bristlecone-realtimespan.html new file mode 100644 index 0000000..960944f --- /dev/null +++ b/reference/bristlecone-realtimespan.html @@ -0,0 +1,426 @@ + + + + + + + + + + + + + + + + + + RealTimeSpan (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              + RealTimeSpan Type +

                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              + Instance members +

                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                              + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                              + + + this.Value + + +

                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + this.Value +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSpan + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSpan +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-realtimespanmodule-realtimespan.html b/reference/bristlecone-realtimespanmodule-realtimespan.html new file mode 100644 index 0000000..f39082b --- /dev/null +++ b/reference/bristlecone-realtimespanmodule-realtimespan.html @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + RealTimeSpan (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                + RealTimeSpan.RealTimeSpan Type +

                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                + Instance members +

                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                + + + this.Value + + +

                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + this.Value +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + Returns: + TimeSpan + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + TimeSpan +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-realtimespanmodule.html b/reference/bristlecone-realtimespanmodule.html new file mode 100644 index 0000000..ca4a2a9 --- /dev/null +++ b/reference/bristlecone-realtimespanmodule.html @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + RealTimeSpan (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  + RealTimeSpan Module +

                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  + Types +

                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  + + + RealTimeSpan + + +

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                  + + + RealTimeSpan.create t + + +

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + RealTimeSpan.create t +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + RealTimeSpan option + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + t + + : + TimeSpan +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + RealTimeSpan option +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-result-resultbuilder.html b/reference/bristlecone-result-resultbuilder.html new file mode 100644 index 0000000..2e290ad --- /dev/null +++ b/reference/bristlecone-result-resultbuilder.html @@ -0,0 +1,1180 @@ + + + + + + + + + + + + + + + + + + ResultBuilder (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    + ResultBuilder Type +

                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    + A result computation expression. + Source: http://www.fssnip.net/7UJ/title/ResultBuilder-Computational-Expression +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    + Constructors +

                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    + Constructor + + Description +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + ResultBuilder() + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + ResultBuilder() +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + ResultBuilder + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + ResultBuilder +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    + Instance members +

                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.Bind + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Bind +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + arg0 + + : + Option<'T> * 'E + +
                                                                                                                                                                                                                                                                                                                                                                      + + + f + + : + 'T -> Result<'a, 'E> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<'a, 'E> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + arg0 + + : + Option<'T> * 'E +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + f + + : + 'T -> Result<'a, 'E> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<'a, 'E> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.Bind + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Bind +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + m + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      + + + f + + : + 'a -> Result<'c, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<'c, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + m + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + f + + : + 'a -> Result<'c, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<'c, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.Combine + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Combine +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + m + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      + + + f + + : + 'a -> Result<'c, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<'c, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + m + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + f + + : + 'a -> Result<'c, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<'c, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.Delay + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Delay +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + f + + : + unit -> 'a + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + unit -> 'a + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + f + + : + unit -> 'a +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + unit -> 'a +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.Return + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Return +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + x + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + x + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.ReturnFrom + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.ReturnFrom +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + m + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + m + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.Run + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Run +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + f + + : + unit -> 'a + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + 'a + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + f + + : + unit -> 'a +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + 'a +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.TryFinally + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.TryFinally +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + m + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      + + + compensation + + : + unit -> unit + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + m + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + compensation + + : + unit -> unit +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.TryWith + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.TryWith +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + m + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      + + + h + + : + exn -> Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + m + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + h + + : + exn -> Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.While + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.While +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                      + + + guard + + : + unit -> bool + +
                                                                                                                                                                                                                                                                                                                                                                      + + + f + + : + unit -> 'a + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<unit, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + guard + + : + unit -> bool +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + f + + : + unit -> 'a +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<unit, 'b> +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                    + + + this.Zero + + +

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Zero +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + 'a option + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + 'a option +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-result.html b/reference/bristlecone-result.html new file mode 100644 index 0000000..e02ac28 --- /dev/null +++ b/reference/bristlecone-result.html @@ -0,0 +1,1887 @@ + + + + + + + + + + + + + + + + + + Result (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      + Result Module +

                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      + Types +

                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      + + + ResultBuilder + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                      + A result computation expression. + Source: http://www.fssnip.net/7UJ/title/ResultBuilder-Computational-Expression +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + () + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + () +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + ('a -> 'b) -> Result<'a, 'c> -> Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + ('a -> 'b) -> Result<'a, 'c> -> Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + (<*>) + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + (<*>) +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<('a -> 'b), 'c> -> Result<'a, 'c> -> Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<('a -> 'b), 'c> -> Result<'a, 'c> -> Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + x >>= f + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + x >>= f +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + x + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'a -> Result<'c, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'c, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + x + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'a -> Result<'c, 'b> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'c, 'b> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + apply f result + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + apply f result +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + Result<('a -> 'b), 'c> + +
                                                                                                                                                                                                                                                                                                                                                                        + + + result + + : + Result<'a, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + Result<('a -> 'b), 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + result + + : + Result<'a, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + bind f + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + bind f +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'b -> Result<'c, 'd> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'b, 'd> -> Result<'c, 'd> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'b -> Result<'c, 'd> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'b, 'd> -> Result<'c, 'd> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + doubleMap successFunc failureFunc + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + doubleMap successFunc failureFunc +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + successFunc + + : + 'a -> 'b + +
                                                                                                                                                                                                                                                                                                                                                                        + + + failureFunc + + : + 'c -> 'd + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'a, 'c> -> Result<'b, 'd> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + successFunc + + : + 'a -> 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + failureFunc + + : + 'c -> 'd +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'a, 'c> -> Result<'b, 'd> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + either successFunc failureFunc twoTrackInput + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + either successFunc failureFunc twoTrackInput +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + successFunc + + : + 'a -> 'b + +
                                                                                                                                                                                                                                                                                                                                                                        + + + failureFunc + + : + 'c -> 'b + +
                                                                                                                                                                                                                                                                                                                                                                        + + + twoTrackInput + + : + Result<'a, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + 'b + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + successFunc + + : + 'a -> 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + failureFunc + + : + 'c -> 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + twoTrackInput + + : + Result<'a, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + fail x + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + fail x +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + x + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'b, 'a> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + x + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'b, 'a> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + lift f result + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + lift f result +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'a -> 'b + +
                                                                                                                                                                                                                                                                                                                                                                        + + + result + + : + Result<'a, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'a -> 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + result + + : + Result<'a, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + map f + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + map f +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'a -> 'b + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'a, 'c> -> Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'a -> 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'a, 'c> -> Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + mapResult f list + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + mapResult f list +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'a -> Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                        + + + list + + : + 'a list + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'b list, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'a -> Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + list + + : + 'a list +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'b list, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + ofOption errorMessage o + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + ofOption errorMessage o +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + errorMessage + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                        + + + o + + : + 'b option + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'b, 'a> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + errorMessage + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + o + + : + 'b option +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'b, 'a> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + plus addSuccess addFailure switch1 switch2 x + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + plus addSuccess addFailure switch1 switch2 x +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + addSuccess + + : + 'a -> 'b -> 'c + +
                                                                                                                                                                                                                                                                                                                                                                        + + + addFailure + + : + 'd -> 'd -> 'd + +
                                                                                                                                                                                                                                                                                                                                                                        + + + switch1 + + : + 'e -> Result<'a, 'd> + +
                                                                                                                                                                                                                                                                                                                                                                        + + + switch2 + + : + 'e -> Result<'b, 'd> + +
                                                                                                                                                                                                                                                                                                                                                                        + + + x + + : + 'e + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'c, 'd> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + addSuccess + + : + 'a -> 'b -> 'c +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + addFailure + + : + 'd -> 'd -> 'd +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + switch1 + + : + 'e -> Result<'a, 'd> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + switch2 + + : + 'e -> Result<'b, 'd> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + x + + : + 'e +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'c, 'd> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + result + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + result +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + ResultBuilder + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + ResultBuilder +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + retn arg0 + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + retn arg0 +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + arg0 + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + arg0 + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + succeed x + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + succeed x +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + x + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + x + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + switch f + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + switch f +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'a -> 'b + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + 'a -> Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'a -> 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + 'a -> Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + tee f x + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + tee f x +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'a -> unit + +
                                                                                                                                                                                                                                                                                                                                                                        + + + x + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + 'a + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'a -> unit +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + x + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + 'a +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + toErrorList result + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + toErrorList result +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + result + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'a, 'b list> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + result + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'a, 'b list> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + toOption r + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + toOption r +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + r + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + 'a option + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                      + If OK, return Some, otherwise None. +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + r + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + 'a option +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                      + + + tryCatch f exnHandler x + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + tryCatch f exnHandler x +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                        + + + f + + : + 'a -> 'b + +
                                                                                                                                                                                                                                                                                                                                                                        + + + exnHandler + + : + exn -> 'c + +
                                                                                                                                                                                                                                                                                                                                                                        + + + x + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + Result<'b, 'c> + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + f + + : + 'a -> 'b +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + exnHandler + + : + exn -> 'c +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + x + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + Result<'b, 'c> +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-seq.html b/reference/bristlecone-seq.html new file mode 100644 index 0000000..898109a --- /dev/null +++ b/reference/bristlecone-seq.html @@ -0,0 +1,832 @@ + + + + + + + + + + + + + + + + + + Seq (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        + Seq Module +

                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                        + + + Seq.align a b + + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Seq.align a b +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                          + + + a + + : + ('a * 'b) seq + +
                                                                                                                                                                                                                                                                                                                                                                          + + + b + + : + ('a * 'b) seq + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + ('a * 'b list) list + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                        + Groups two sequences together by key +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + a + + : + ('a * 'b) seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + b + + : + ('a * 'b) seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + ('a * 'b list) list +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                        + + + Seq.everyNth n seq + + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Seq.everyNth n seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                          + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                          + + + seq + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + 'a seq + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + n + + : + int +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + seq + + : + 'a seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + 'a seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                        + + + Seq.hasDuplicates seq + + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Seq.hasDuplicates seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                          + + + seq + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + bool + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + seq + + : + 'a seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + bool +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                        + + + Seq.intersect xs ys + + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Seq.intersect xs ys +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                          + + + xs + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                                                                                          + + + ys + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + IEnumerable<'a> + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + xs + + : + 'a seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + ys + + : + 'a seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + IEnumerable<'a> +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                        + + + Seq.keyMatch a b + + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Seq.keyMatch a b +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                          + + + a + + : + (string * 'a) seq + +
                                                                                                                                                                                                                                                                                                                                                                          + + + b + + : + (string * 'b) seq + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + (string * 'a * 'b) seq + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        **Description**
                                                                                                                                                                                                                                                                                                                                                                        + Unifies two sequences into a tuple based on a string key
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + a + + : + (string * 'a) seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + b + + : + (string * 'b) seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + (string * 'a * 'b) seq +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                        + + + Seq.stddev nums + + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Seq.stddev nums +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                          + + + nums + + : + float list + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + nums + + : + float list +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-shortcode-shortcode.html b/reference/bristlecone-shortcode-shortcode.html new file mode 100644 index 0000000..895113a --- /dev/null +++ b/reference/bristlecone-shortcode-shortcode.html @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + ShortCode (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          + ShortCode.ShortCode Type +

                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          + Instance members +

                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                          + + + this.Value + + +

                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + this.Value +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + string + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + + string +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-shortcode.html b/reference/bristlecone-shortcode.html new file mode 100644 index 0000000..c6d121c --- /dev/null +++ b/reference/bristlecone-shortcode.html @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + ShortCode (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            + ShortCode Module +

                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            + Types +

                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            + + + ShortCode + + +

                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                            + + + ShortCode.create str + + +

                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + ShortCode.create str +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                              + + + str + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + ShortCode option + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + str + + : + string +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + ShortCode option +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                            + + + ShortCode.unwrap arg1 + + +

                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + ShortCode.unwrap arg1 +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + string + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + arg0 + + : + ShortCode +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + string +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-solver-conditioning.html b/reference/bristlecone-solver-conditioning.html new file mode 100644 index 0000000..9cad12b --- /dev/null +++ b/reference/bristlecone-solver-conditioning.html @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + Conditioning (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              + Conditioning Module +

                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              + Conditioning of time-series data, which allows for maximum use of observed time-series data. +

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                              + + + startPoint conditioning series + + +

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + startPoint conditioning series +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + Map<ShortCode, 'a> option + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                              + Strategy for assigning a start time - `t0` - to a time series. +

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + conditioning + + : + Conditioning<'a> +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + CodedMap<TimeSeries<'a>> +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + Map<ShortCode, 'a> option +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-solver-discrete-measurement-1.html b/reference/bristlecone-solver-discrete-measurement-1.html new file mode 100644 index 0000000..7a0e9ab --- /dev/null +++ b/reference/bristlecone-solver-discrete-measurement-1.html @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + Measurement<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                + Measurement<'a> Type +

                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                + A continuation representing a transform of pre-computed data + float = previous state +

                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-solver-discrete.html b/reference/bristlecone-solver-discrete.html new file mode 100644 index 0000000..1cc63a3 --- /dev/null +++ b/reference/bristlecone-solver-discrete.html @@ -0,0 +1,548 @@ + + + + + + + + + + + + + + + + + + Discrete (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  + Discrete Module +

                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  + Types +

                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  + + + Measurement<'a> + + +

                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                  + A continuation representing a transform of pre-computed data + float = previous state +

                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                  + + + solve startPoint c m expected + + +

                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + solve startPoint c m expected +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + float[] + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                  + Finds the solution of a discretised model system, given time-series data. + `startPoint` - a preconditioned point to represent time-zero. +

                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + startPoint + + : + Map<ShortCode, float> +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + c + + : + ShortCode +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + m + + : + Measurement<float> +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + expected + + : + CodedMap<float[]> +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + float[] +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-solver-solver-1.html b/reference/bristlecone-solver-solver-1.html new file mode 100644 index 0000000..bece452 --- /dev/null +++ b/reference/bristlecone-solver-solver-1.html @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + Solver<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    + Solver<'a> Type +

                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-solver-steptype.html b/reference/bristlecone-solver-steptype.html new file mode 100644 index 0000000..dfded1c --- /dev/null +++ b/reference/bristlecone-solver-steptype.html @@ -0,0 +1,457 @@ + + + + + + + + + + + + + + + + + + StepType (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      + StepType Type +

                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      + If environmental forcing data is supplied, the output series may be + configured to be either external (i.e. on observation timeline) or + internal (e.g. on environmental data timeline). +

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      + Union cases +

                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                      + + + External + + +

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + External +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                      + + + Internal + + +

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Internal +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-solver.html b/reference/bristlecone-solver.html new file mode 100644 index 0000000..5ebb133 --- /dev/null +++ b/reference/bristlecone-solver.html @@ -0,0 +1,1071 @@ + + + + + + + + + + + + + + + + + + Solver (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + Solver Module +

                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + Helper functions for the creation of `Solver` functions, which apply time-series models + to time-series data (when using Bristlecone time-series types). +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + Types and nested modules +

                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + + + Conditioning + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + Conditioning of time-series data, which allows for maximum use of observed time-series data. +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + + + Discrete + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + + + Solver<'a> + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + + + StepType + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + If environmental forcing data is supplied, the output series may be + configured to be either external (i.e. on observation timeline) or + internal (e.g. on environmental data timeline). +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                        + + + fixedResolutionSolver fRes stepType dynamicSeries environment engine t0 + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + fixedResolutionSolver fRes stepType dynamicSeries environment engine t0 +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + CodedMap<ODE> -> Map<ShortCode, float[]> + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + fRes + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + stepType + + : + StepType +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + dynamicSeries + + : + TimeFrame<float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + environment + + : + TimeFrame<float> option +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + engine + + : + EstimationEngine<float, float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + t0 + + : + CodedMap<float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + CodedMap<ODE> -> Map<ShortCode, float[]> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                        + + + fixedStep logTo timeHandling tStart tEnd initialState forcings + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + fixedStep logTo timeHandling tStart tEnd initialState forcings +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                          + + + logTo + + : + WriteOut + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + timeHandling + + : + TimeMode<'a, float> + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + tStart + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + tEnd + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + initialState + + : + CodedMap<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + forcings + + : + CodedMap<TimeIndex<'a>> + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + CodedMap<ODE> -> Map<ShortCode, 'a[]> + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + Step the solver using high resolution, and output at low resolution. + External steps are of a fixed width. +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + logTo + + : + WriteOut +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + timeHandling + + : + TimeMode<'a, float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + tStart + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + tEnd + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + initialState + + : + CodedMap<'a> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + forcings + + : + CodedMap<TimeIndex<'a>> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + CodedMap<ODE> -> Map<ShortCode, 'a[]> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                        + + + solver stepType dynamicSeries environment engine t0 + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + solver stepType dynamicSeries environment engine t0 +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + Solver<float> + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + Create a solver that applies time-series models to time-series data. + Takes a `TimeFrame` of dynamic time-series +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + stepType + + : + StepType +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + dynamicSeries + + : + TimeFrame<float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + environment + + : + TimeFrame<float> option +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + engine + + : + EstimationEngine<float, float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + t0 + + : + CodedMap<float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + Solver<float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                        + + + variableExternalStep logTo timeHandling timeSteps initialPoint + + +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + variableExternalStep logTo timeHandling timeSteps initialPoint +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                          + + + logTo + + : + WriteOut + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + timeHandling + + : + TimeMode<float, float> + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + timeSteps + + : + float seq + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + initialPoint + + : + CodedMap<float> + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + CodedMap<ODE> -> Map<ShortCode, float[]> + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + Step the solver using the high resolution, and output at low resolution. + External steps can be variable in size. + Each time jump is integrated individually. +

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + logTo + + : + WriteOut +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + timeHandling + + : + TimeMode<float, float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + timeSteps + + : + float seq +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + initialPoint + + : + CodedMap<float> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + CodedMap<ODE> -> Map<ShortCode, float[]> +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-convergence-gelmanrubin.html b/reference/bristlecone-statistics-convergence-gelmanrubin.html new file mode 100644 index 0000000..9fca40e --- /dev/null +++ b/reference/bristlecone-statistics-convergence-gelmanrubin.html @@ -0,0 +1,454 @@ + + + + + + + + + + + + + + + + + + GelmanRubin (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          + GelmanRubin Module +

                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                          + + + rHat chains + + +

                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + rHat chains +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                            + + + chains + + : + float seq seq + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                          + R-hat tends downwards to one as convergence increases. It is often + accepted that a value below 1.1 indicates convergence for chains + within a Monte Carlo Markov Chain analysis. +

                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + chains + + : + float seq seq +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-convergence.html b/reference/bristlecone-statistics-convergence.html new file mode 100644 index 0000000..a921d51 --- /dev/null +++ b/reference/bristlecone-statistics-convergence.html @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + Convergence (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            + Convergence Module +

                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            + Statistics to measure the convergence of multiple trajectories, + for example for chains in a Monte Carlo analysis. +

                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            + Nested modules +

                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            + Modules + + Description +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            + + + GelmanRubin + + +

                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-distributions-continuousuniform.html b/reference/bristlecone-statistics-distributions-continuousuniform.html new file mode 100644 index 0000000..709a687 --- /dev/null +++ b/reference/bristlecone-statistics-distributions-continuousuniform.html @@ -0,0 +1,466 @@ + + + + + + + + + + + + + + + + + + ContinuousUniform (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              + ContinuousUniform Module +

                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                              + + + ContinuousUniform.draw random min max + + +

                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + ContinuousUniform.draw random min max +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                                                                                                + + + min + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                + + + max + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + unit -> float + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + min + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + max + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + unit -> float +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-distributions-mutlivariatenormal.html b/reference/bristlecone-statistics-distributions-mutlivariatenormal.html new file mode 100644 index 0000000..ea6779c --- /dev/null +++ b/reference/bristlecone-statistics-distributions-mutlivariatenormal.html @@ -0,0 +1,604 @@ + + + + + + + + + + + + + + + + + + MutlivariateNormal (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                + MutlivariateNormal Module +

                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                + + + MutlivariateNormal.mapply m f + + +

                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + MutlivariateNormal.mapply m f +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + m + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + f + + : + float -> float + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + m + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + f + + : + float -> float +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + Matrix<float> +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                + + + MutlivariateNormal.sample cov rnd + + +

                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + MutlivariateNormal.sample cov rnd +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + cov + + : + Matrix<float> + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + rnd + + : + Random + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + unit -> Vector<float> + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + cov + + : + Matrix<float> +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + rnd + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + unit -> Vector<float> +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                + + + MutlivariateNormal.sample' rnd () + + +

                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + MutlivariateNormal.sample' rnd () +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + rnd + + : + Random + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + () + + : + unit + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + float seq + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + rnd + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + () + + : + unit +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + float seq +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-distributions-normal.html b/reference/bristlecone-statistics-distributions-normal.html new file mode 100644 index 0000000..75b9924 --- /dev/null +++ b/reference/bristlecone-statistics-distributions-normal.html @@ -0,0 +1,466 @@ + + + + + + + + + + + + + + + + + + Normal (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  + Normal Module +

                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                  + + + Normal.draw random mean stdev + + +

                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + Normal.draw random mean stdev +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + random + + : + Random + +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + mean + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + stdev + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + unit -> float + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + mean + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + stdev + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + unit -> float +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-distributions.html b/reference/bristlecone-statistics-distributions.html new file mode 100644 index 0000000..1c014c6 --- /dev/null +++ b/reference/bristlecone-statistics-distributions.html @@ -0,0 +1,440 @@ + + + + + + + + + + + + + + + + + + Distributions (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    + Distributions Module +

                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    + Nested modules +

                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    + Modules + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    + + + ContinuousUniform + + +

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    + + + MutlivariateNormal + + +

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    + + + Normal + + +

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-interpolate.html b/reference/bristlecone-statistics-interpolate.html new file mode 100644 index 0000000..3eff228 --- /dev/null +++ b/reference/bristlecone-statistics-interpolate.html @@ -0,0 +1,796 @@ + + + + + + + + + + + + + + + + + + Interpolate (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      + Interpolate Module +

                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                      + + + bilinear (arg1, arg2) (arg3, arg4) t + + +

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + bilinear (arg1, arg2) (arg3, arg4) t +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg0 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg1 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg2 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg3 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + t + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                      + Interpolates between two data points, for a given time `t`. +

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg0 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg1 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg2 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg3 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + t + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                      + + + lower (arg1, arg2) (arg3, arg4) t + + +

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + lower (arg1, arg2) (arg3, arg4) t +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg0 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg1 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg2 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg3 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + t + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                      + Use the previous point +

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg0 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg1 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg2 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg3 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + t + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                      + + + upper (arg1, arg2) (arg3, arg4) t + + +

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + upper (arg1, arg2) (arg3, arg4) t +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg0 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg1 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg2 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + arg3 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + t + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                      + Use the next point +

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg0 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg1 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg2 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + arg3 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + t + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-regression.html b/reference/bristlecone-statistics-regression.html new file mode 100644 index 0000000..e651ba8 --- /dev/null +++ b/reference/bristlecone-statistics-regression.html @@ -0,0 +1,444 @@ + + + + + + + + + + + + + + + + + + Regression (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        + Regression Module +

                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                        + + + pValueForLinearSlopeCoefficient x y + + +

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + pValueForLinearSlopeCoefficient x y +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + x + + : + float[] + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + y + + : + float[] + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + x + + : + float[] +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + y + + : + float[] +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-rootfinding.html b/reference/bristlecone-statistics-rootfinding.html new file mode 100644 index 0000000..2d7b393 --- /dev/null +++ b/reference/bristlecone-statistics-rootfinding.html @@ -0,0 +1,685 @@ + + + + + + + + + + + + + + + + + + RootFinding (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          + RootFinding Module +

                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          + Statistics for determining the root of non-linear equations. +

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                          + + + bisect n N f a b t + + +

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + bisect n N f a b t +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + N + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + f + + : + float -> float + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + a + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + b + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + t + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                          + Bisect method for finding root of non-linear equations. +

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + n + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + N + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + f + + : + float -> float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + a + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + b + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + t + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                          + + + secant n N f x0 x1 x2 + + +

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + secant n N f x0 x1 x2 +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + N + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + f + + : + float -> float + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + x0 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + x1 + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + x2 + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                          + Secant method for finding root of non-linear equations. This method is faster than bisection, but may not converge on a root. +

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + n + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + N + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + f + + : + float -> float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + x0 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + x1 + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + x2 + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics-trendanalysis.html b/reference/bristlecone-statistics-trendanalysis.html new file mode 100644 index 0000000..8e3805f --- /dev/null +++ b/reference/bristlecone-statistics-trendanalysis.html @@ -0,0 +1,462 @@ + + + + + + + + + + + + + + + + + + TrendAnalysis (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            + TrendAnalysis Module +

                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            + Statistics to determine whether there are trends within series. +

                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                            + + + theilSen timeDiff ts + + +

                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + theilSen timeDiff ts +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + int + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                            + TODO Finish implementation +

                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + timeDiff + + : + TimeSpan -> int +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + ts + + : + TimeSeries<int> +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + int +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-statistics.html b/reference/bristlecone-statistics.html new file mode 100644 index 0000000..bd3a23e --- /dev/null +++ b/reference/bristlecone-statistics.html @@ -0,0 +1,500 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Statistics | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              + Bristlecone.Statistics Namespace +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              + Modules + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              + + + Convergence + + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + Statistics to measure the convergence of multiple trajectories, + for example for chains in a Monte Carlo analysis. +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              + + + Distributions + + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              + + + Interpolate + + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              + + + Regression + + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              + + + RootFinding + + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + Statistics for determining the root of non-linear equations. +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              + + + TrendAnalysis + + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + Statistics to determine whether there are trends within series. +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-test-compute.html b/reference/bristlecone-test-compute.html new file mode 100644 index 0000000..3dea252 --- /dev/null +++ b/reference/bristlecone-test-compute.html @@ -0,0 +1,1041 @@ + + + + + + + + + + + + + + + + + + Compute (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                + Compute Module +

                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                + + + drawParameterSet rnd pool + + +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + drawParameterSet rnd pool +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + ParameterPool + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + Draw a random set of parameters +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + rnd + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                + + + generateFixedSeries writeOut equations timeMode seriesLength startPoint startDate resolution env theta + + +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + generateFixedSeries writeOut equations timeMode seriesLength startPoint startDate resolution env theta +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + Map<ShortCode, TimeSeries<'b>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + Generate a fixed-resolution time-series for testing model fits +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + writeOut + + : + WriteOut +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + equations + + : + Map<ShortCode, ('a -> ODE)> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + timeMode + + : + TimeMode<'b, float> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + seriesLength + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + startPoint + + : + CodedMap<'b> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + startDate + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + resolution + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + env + + : + CodedMap<TimeIndex<'b>> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + theta + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + Map<ShortCode, TimeSeries<'b>> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                + + + generateMeasures measures startValues expected + + +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + generateMeasures measures startValues expected +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + CodedMap<TimeSeries<float>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + A test procedure for computing measures given time series data. +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + measures + + : + Map<ShortCode, Measurement<float>> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + startValues + + : + Map<ShortCode, float> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + expected + + : + CodedMap<TimeSeries<float>> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + CodedMap<TimeSeries<float>> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                + + + tryGenerateData engine settings model attempts + + +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + tryGenerateData engine settings model attempts +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + Result<(CodedMap<TimeSeries<float>> * ParameterPool), string> + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + Generate data and check that it complies with the + given ruleset. +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + engine + + : + EstimationEngine<float, float> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + settings + + : + TestSettings<float> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + model + + : + ModelSystem +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + attempts + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + Result<(CodedMap<TimeSeries<float>> * ParameterPool), string> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                + + + tryGenerateData' engine model testSettings theta + + +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + tryGenerateData' engine model testSettings theta +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + Result<CodedMap<TimeSeries<float>>, string> + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + Generate data +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + engine + + : + EstimationEngine<float, float> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + model + + : + ModelSystem +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + testSettings + + : + TestSettings<float> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + theta + + : + Pool +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + Result<CodedMap<TimeSeries<float>>, string> +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-test-generationrules.html b/reference/bristlecone-test-generationrules.html new file mode 100644 index 0000000..f6ddc9e --- /dev/null +++ b/reference/bristlecone-test-generationrules.html @@ -0,0 +1,642 @@ + + + + + + + + + + + + + + + + + + GenerationRules (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  + GenerationRules Module +

                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + alwaysLessThan i variable + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + alwaysLessThan i variable +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + i + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + variable + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + GenerationRule + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + Ensures that all generated values are less than i +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + i + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + variable + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + GenerationRule +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + alwaysMoreThan i variable + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + alwaysMoreThan i variable +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + i + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + variable + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + GenerationRule + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + Ensures that all generated values are greater than i +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + i + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + variable + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + GenerationRule +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + monotonicallyIncreasing variable + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + monotonicallyIncreasing variable +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + variable + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + GenerationRule + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + Ensures that there is always a positive change in values of a variable +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + variable + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + GenerationRule +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-test-noise.html b/reference/bristlecone-test-noise.html new file mode 100644 index 0000000..e586baf --- /dev/null +++ b/reference/bristlecone-test-noise.html @@ -0,0 +1,630 @@ + + + + + + + + + + + + + + + + + + Noise (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    + Noise Module +

                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions for adding background variability into + test problems. +

                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + tryAddNoise seriesName noiseDistributionFn data + + +

                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + tryAddNoise seriesName noiseDistributionFn data +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + seriesName + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + noiseDistributionFn + + : + unit -> float + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + data + + : + CodedMap<TimeSeries<float>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Map<ShortCode, TimeSeries<float>> option + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + Adds noise to a time-series 'seriesName', based on the given distribution function. +

                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + seriesName + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + noiseDistributionFn + + : + unit -> float +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + data + + : + CodedMap<TimeSeries<float>> +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Map<ShortCode, TimeSeries<float>> option +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + tryAddNormal sdParamCode seriesName rnd pool data + + +

                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + tryAddNormal sdParamCode seriesName rnd pool data +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + sdParamCode + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + seriesName + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + rnd + + : + Random + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + pool + + : + ParameterPool + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + data + + : + CodedMap<TimeSeries<float>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + Result<Map<ShortCode, TimeSeries<float>>, string> + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + Adds normally-distributed noise around each data point in the selected + time-series. + Returns `None` if the series or parameter does not exist. +

                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + sdParamCode + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + seriesName + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + rnd + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + pool + + : + ParameterPool +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + data + + : + CodedMap<TimeSeries<float>> +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + Result<Map<ShortCode, TimeSeries<float>>, string> +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-test-parametertestresult.html b/reference/bristlecone-test-parametertestresult.html new file mode 100644 index 0000000..dcb9c33 --- /dev/null +++ b/reference/bristlecone-test-parametertestresult.html @@ -0,0 +1,506 @@ + + + + + + + + + + + + + + + + + + ParameterTestResult (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      + ParameterTestResult Type +

                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      + Record fields +

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + Record Field + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + EstimatedValue + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + EstimatedValue +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + Field type: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + Field type: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + Identifier + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Identifier +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + Field type: + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + Field type: + + string +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + RealValue + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + RealValue +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + Field type: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + Field type: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-test-testresult.html b/reference/bristlecone-test-testresult.html new file mode 100644 index 0000000..ddd2d9e --- /dev/null +++ b/reference/bristlecone-test-testresult.html @@ -0,0 +1,578 @@ + + + + + + + + + + + + + + + + + + TestResult (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        + TestResult Type +

                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        + Record fields +

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + Record Field + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + ErrorStructure + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + ErrorStructure +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + Map<string, float seq> + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + + Map<string, float seq> +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + EstimatedLikelihood + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + EstimatedLikelihood +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + Parameters + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + ParameterTestResult list + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + + ParameterTestResult list +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + RealLikelihood + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + RealLikelihood +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + Series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Series +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + Map<string, FitSeries> + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + Field type: + + Map<string, FitSeries> +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-test-testsettings-1.html b/reference/bristlecone-test-testsettings-1.html new file mode 100644 index 0000000..a080210 --- /dev/null +++ b/reference/bristlecone-test-testsettings-1.html @@ -0,0 +1,824 @@ + + + + + + + + + + + + + + + + + + TestSettings<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          + TestSettings<'a> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          + Record fields +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Record Field + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Attempts + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + Attempts +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + int +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + EndCondition + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + EndCondition +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + EndCondition<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + EndCondition<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + EnvironmentalData + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + EnvironmentalData +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + CodedMap<TimeSeries<'a>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + CodedMap<TimeSeries<'a>> +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + GenerationRules + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + GenerationRules +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + GenerationRule list + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + GenerationRule list +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + NoiseGeneration + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + NoiseGeneration +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + Random -> Pool -> CodedMap<TimeSeries<'a>> -> Result<CodedMap<TimeSeries<'a>>, string> + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + Random -> Pool -> CodedMap<TimeSeries<'a>> -> Result<CodedMap<TimeSeries<'a>>, string> +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Random + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + Random +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + Random + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + Random +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Resolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + Resolution +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + FixedTemporalResolution + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + StartDate + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + StartDate +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + DateTime + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + StartValues + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + StartValues +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + CodedMap<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + CodedMap<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + TimeSeriesLength + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + TimeSeriesLength +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Field type: + + int +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          + Static members +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Static member + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + TestSettings.Default + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + TestSettings.Default +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + TestSettings<float> + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + + TestSettings<float> +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-test.html b/reference/bristlecone-test.html new file mode 100644 index 0000000..9cf4a7d --- /dev/null +++ b/reference/bristlecone-test.html @@ -0,0 +1,1449 @@ + + + + + + + + + + + + + + + + + + Test (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Test Module +

                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Types and nested modules +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + Compute + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + GenerationRules + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + Noise + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Functions for adding background variability into + test problems. +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + ParameterTestResult + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + TestResult + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + TestSettings<'a> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + addGenerationRules rules settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + addGenerationRules rules settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + rules + + : + GenerationRule list +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + addNoise noiseFn settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + addNoise noiseFn settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Add noise to a particular time-series when generating fake time-series. + Built-in noise functions are in the `Noise` module. +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + noiseFn + + : + Random -> Pool -> CodedMap<TimeSeries<'a>> -> Result<CodedMap<TimeSeries<'a>>, string> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + addStartValue seriesName value settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + addStartValue seriesName value settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + seriesName + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + value + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + settings + + : + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Adds a start value for a time-series. +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + seriesName + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + value + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + addStartValues values settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + addStartValues values settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + values + + : + (string * 'a) seq + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + settings + + : + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Adds start values to the test settings. Overwrites any existing + start values that may already exist. +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + values + + : + (string * 'a) seq +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + create + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + create +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<float> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<float> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + endWhen goal settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + endWhen goal settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + goal + + : + EndCondition<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + isValidSettings model testSettings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + isValidSettings model testSettings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + Result<TestSettings<'a>, string> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Ensures settings are valid for a test, by ensuring that + start values have been set for each equation. +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + model + + : + ModelSystem +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + testSettings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + Result<TestSettings<'a>, string> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + useRandom rnd settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + useRandom rnd settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + rnd + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + useStartTime time settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + useStartTime time settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + time + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + withFixedTemporalResolution res settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + withFixedTemporalResolution res settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + res + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + withTimeSeriesLength n settings + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + withTimeSeriesLength n settings +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + settings + + : + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TestSettings<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + n + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + settings + + : + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TestSettings<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-bootstrap.html b/reference/bristlecone-time-bootstrap.html new file mode 100644 index 0000000..6cf02d3 --- /dev/null +++ b/reference/bristlecone-time-bootstrap.html @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + Bootstrap (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              + Bootstrap Module +

                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              + Contains functions for bootstrapping time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                              + + + removeSingle random data + + +

                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + removeSingle random data +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + Map<ShortCode, TimeSeries<float<'v>>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                              + Randomly remove a single time point from a time-series. +

                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + random + + : + Random +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + data + + : + CodedMap<TimeSeries<float<'v>>> +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + Map<ShortCode, TimeSeries<float<'v>>> +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-fixedtemporalresolution.html b/reference/bristlecone-time-fixedtemporalresolution.html new file mode 100644 index 0000000..577c1fb --- /dev/null +++ b/reference/bristlecone-time-fixedtemporalresolution.html @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + FixedTemporalResolution (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                + FixedTemporalResolution Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-growthseries-growthseries.html b/reference/bristlecone-time-growthseries-growthseries.html new file mode 100644 index 0000000..93d7dcf --- /dev/null +++ b/reference/bristlecone-time-growthseries-growthseries.html @@ -0,0 +1,530 @@ + + + + + + + + + + + + + + + + + + GrowthSeries<'u> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + GrowthSeries.GrowthSeries<'u> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + Union cases +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + Absolute TimeSeries<float<'u>> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + Absolute TimeSeries<float<'u>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Item + + : + TimeSeries<float<'u>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + Cumulative TimeSeries<float<'u>> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + Cumulative TimeSeries<float<'u>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Item + + : + TimeSeries<float<'u>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + Relative TimeSeries<float<'u>> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + Relative TimeSeries<float<'u>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Item + + : + TimeSeries<float<'u>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-growthseries.html b/reference/bristlecone-time-growthseries.html new file mode 100644 index 0000000..612f505 --- /dev/null +++ b/reference/bristlecone-time-growthseries.html @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + GrowthSeries (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + GrowthSeries Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + Types +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + GrowthSeries<'u> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + GrowthSeries.growthToTime growth + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + GrowthSeries.growthToTime growth +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + TimeSeries<float<'u>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + growth + + : + GrowthSeries<'u> +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + TimeSeries<float<'u>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-resolution-fixedtemporalresolution.html b/reference/bristlecone-time-resolution-fixedtemporalresolution.html new file mode 100644 index 0000000..de40c42 --- /dev/null +++ b/reference/bristlecone-time-resolution-fixedtemporalresolution.html @@ -0,0 +1,577 @@ + + + + + + + + + + + + + + + + + + FixedTemporalResolution (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + Resolution.FixedTemporalResolution Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + Represents the width of equally-spaced steps in time. +

                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + Union cases +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + CustomEpoch RealTimeSpan + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + CustomEpoch RealTimeSpan +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Item + + : + RealTimeSpan +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + Days PositiveInt + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Days PositiveInt +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Item + + : + PositiveInt +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + Months PositiveInt + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Months PositiveInt +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Item + + : + PositiveInt +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + Years PositiveInt + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Years PositiveInt +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Item + + : + PositiveInt +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-resolution-temporalresolution.html b/reference/bristlecone-time-resolution-temporalresolution.html new file mode 100644 index 0000000..50be899 --- /dev/null +++ b/reference/bristlecone-time-resolution-temporalresolution.html @@ -0,0 +1,469 @@ + + + + + + + + + + + + + + + + + + TemporalResolution (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + Resolution.TemporalResolution Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + Represents the maximum resolution of the time series +

                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + Union cases +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + Fixed FixedTemporalResolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Fixed FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Item + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + Variable + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + Variable +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-resolution.html b/reference/bristlecone-time-resolution.html new file mode 100644 index 0000000..80c32a8 --- /dev/null +++ b/reference/bristlecone-time-resolution.html @@ -0,0 +1,541 @@ + + + + + + + + + + + + + + + + + + Resolution (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Resolution Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Types +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + FixedTemporalResolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Represents the width of equally-spaced steps in time. +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + TemporalResolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Represents the maximum resolution of the time series +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Resolution.increment res t + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + Full Usage: + Resolution.increment res t +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + DateTime + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Increment time by an increment defined as a fixed temporal resolution. +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + res + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + t + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + Returns: + + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeextensions.html b/reference/bristlecone-time-timeextensions.html new file mode 100644 index 0000000..085fbe2 --- /dev/null +++ b/reference/bristlecone-time-timeextensions.html @@ -0,0 +1,551 @@ + + + + + + + + + + + + + + + + + + TimeExtensions (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + TimeExtensions Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + Contains F#-friendly extension methods for .NET time types. +

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + Type extensions +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + Type extension + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + DateTime.Create(day) (month) (year) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + DateTime.Create(day) (month) (year) +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + day + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + month + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + year + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + DateTime + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + Extended Type: + DateTime +

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + day + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + month + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + year + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + TimeSpan.Multiply(two) (one) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + TimeSpan.Multiply(two) (one) +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + two + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + one + + : + TimeSpan + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TimeSpan + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + Extended Type: + TimeSpan +

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + two + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + one + + : + TimeSpan +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TimeSpan +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeframe-timeframe-1.html b/reference/bristlecone-time-timeframe-timeframe-1.html new file mode 100644 index 0000000..f67a1a2 --- /dev/null +++ b/reference/bristlecone-time-timeframe-timeframe-1.html @@ -0,0 +1,506 @@ + + + + + + + + + + + + + + + + + + TimeFrame<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + TimeFrame.TimeFrame<'a> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + Instance members +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + this.Resolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + this.Resolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TemporalResolution + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + this.Series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + this.Series +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + CodedMap<TimeSeries<'a>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + CodedMap<TimeSeries<'a>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + this.StartDate + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + this.StartDate +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + DateTime + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeframe.html b/reference/bristlecone-time-timeframe.html new file mode 100644 index 0000000..e2e03f1 --- /dev/null +++ b/reference/bristlecone-time-timeframe.html @@ -0,0 +1,542 @@ + + + + + + + + + + + + + + + + + + TimeFrame (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + TimeFrame Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + A `TimeFrame` contains multiple time-series that use the same + temporal index. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + Types +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeFrame<'a> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeFrame.inner arg1 + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + TimeFrame.inner arg1 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + CodedMap<TimeSeries<'a>> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + arg0 + + : + TimeFrame<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + CodedMap<TimeSeries<'a>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeFrame.tryCreate series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + Full Usage: + TimeFrame.tryCreate series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + TimeFrame<'b> option + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + series + + : + Map<ShortCode, TimeSeries<'b>> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + Returns: + + TimeFrame<'b> option +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeindex-indexmode-1.html b/reference/bristlecone-time-timeindex-indexmode-1.html new file mode 100644 index 0000000..bdd18d9 --- /dev/null +++ b/reference/bristlecone-time-timeindex-indexmode-1.html @@ -0,0 +1,457 @@ + + + + + + + + + + + + + + + + + + IndexMode<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + IndexMode<'a> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Union cases +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + Exact + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + Exact +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + Interpolate float * 'a -> float * 'a -> float -> 'a + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + Interpolate float * 'a -> float * 'a -> float -> 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + Item + + : + float * 'a -> float * 'a -> float -> 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Item + + : + float * 'a -> float * 'a -> float -> 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeindex-timeindex-1.html b/reference/bristlecone-time-timeindex-timeindex-1.html new file mode 100644 index 0000000..b067fe9 --- /dev/null +++ b/reference/bristlecone-time-timeindex-timeindex-1.html @@ -0,0 +1,645 @@ + + + + + + + + + + + + + + + + + + TimeIndex<'a> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + TimeIndex<'a> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + A representation of temporal data as fractions of a common fixed temporal resolution, + from a given baseline. The baseline must be greater than or equal to the baseline + of the time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Constructors +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Constructor + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + TimeIndex(baseDate, resolution, mode, series) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + TimeIndex(baseDate, resolution, mode, series) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + TimeIndex<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + baseDate + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + resolution + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + mode + + : + IndexMode<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + TimeIndex<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Instance members +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + this.Baseline + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Baseline +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + DateTime + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + this[t] + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this[t] +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + t + + : + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + t + + : + float +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + this.Values + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + this.Values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + (float * 'a) seq + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Returns: + + (float * 'a) seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeindex.html b/reference/bristlecone-time-timeindex.html new file mode 100644 index 0000000..9314454 --- /dev/null +++ b/reference/bristlecone-time-timeindex.html @@ -0,0 +1,907 @@ + + + + + + + + + + + + + + + + + + TimeIndex (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + TimeIndex Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Types +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + IndexMode<'a> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + TimeIndex<'a> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + A representation of temporal data as fractions of a common fixed temporal resolution, + from a given baseline. The baseline must be greater than or equal to the baseline + of the time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + indexSeries t0 targetResolution series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + indexSeries t0 targetResolution series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + (float * 'a) seq + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Indexes the time series in accordance with a `baselineTime` and fixed `resolution`. + Where the time series is of a lower resolution +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + t0 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + targetResolution + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + (float * 'a) seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + totalMonthsElapsed d1 d2 + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + totalMonthsElapsed d1 d2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d1 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d2 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + totalYearsElapsed d1 d2 + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + totalYearsElapsed d1 d2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d1 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d2 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + totalYearsElapsed' d1 d2 + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + totalYearsElapsed' d1 d2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Algorithm that ignores leap year days. + Truncation occurs for 29th Feburary. + Actual days count basis. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d1 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d2 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + totalYearsElapsedFraction d1 d2 + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + totalYearsElapsedFraction d1 d2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + float + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Calculates the fractional number of years elapsed between two dates. + The basis used is actual/actual. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d1 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + d2 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + float +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeseries-1.html b/reference/bristlecone-time-timeseries-1.html new file mode 100644 index 0000000..1e96959 --- /dev/null +++ b/reference/bristlecone-time-timeseries-1.html @@ -0,0 +1,627 @@ + + + + + + + + + + + + + + + + + + TimeSeries<'T> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + TimeSeries<'T> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Instance members +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + this.Head + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + this.Head +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + Epoch<'T> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + Epoch<'T> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + this.Length + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + this.Length +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + this.Resolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + this.Resolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + TemporalResolution + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + TemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + this.StartDate + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + this.StartDate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + Observation<'T> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + Observation<'T> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + this.TimeSteps + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + this.TimeSteps +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + TimeSpan[] + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + TimeSpan[] +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + this.Values + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Full Usage: + this.Values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + 'T seq + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + Returns: + + 'T seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeseries-floatingtimeseries-1.html b/reference/bristlecone-time-timeseries-floatingtimeseries-1.html new file mode 100644 index 0000000..d8e1b93 --- /dev/null +++ b/reference/bristlecone-time-timeseries-floatingtimeseries-1.html @@ -0,0 +1,362 @@ + + + + + + + + + + + + + + + + + + FloatingTimeSeries<'T> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + TimeSeries.FloatingTimeSeries<'T> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + A sequence of data observed at time points. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeseries-timeseries-1.html b/reference/bristlecone-time-timeseries-timeseries-1.html new file mode 100644 index 0000000..3963a49 --- /dev/null +++ b/reference/bristlecone-time-timeseries-timeseries-1.html @@ -0,0 +1,624 @@ + + + + + + + + + + + + + + + + + + TimeSeries<'T> (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + TimeSeries.TimeSeries<'T> Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + A sequence of data observed at time intervals (regular or irregular), + where the sampling intervals occur following a fixed start observation. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Instance members +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + this.Head + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + this.Head +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + Epoch<'T> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + Epoch<'T> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + this.Length + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + this.Length +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + this.Resolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + this.Resolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TemporalResolution + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + this.StartDate + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + this.StartDate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + Observation<'T> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + Observation<'T> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + this.TimeSteps + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + this.TimeSteps +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + TimeSpan[] + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + TimeSpan[] +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + this.Values + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Full Usage: + this.Values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + 'T seq + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Returns: + + 'T seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time-timeseries.html b/reference/bristlecone-time-timeseries.html new file mode 100644 index 0000000..939566e --- /dev/null +++ b/reference/bristlecone-time-timeseries.html @@ -0,0 +1,1987 @@ + + + + + + + + + + + + + + + + + + TimeSeries (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + TimeSeries Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Types +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + FloatingTimeSeries<'T> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + A sequence of data observed at time points. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries<'T> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + A sequence of data observed at time intervals (regular or irregular), + where the sampling intervals occur following a fixed start observation. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.bootstrapFixedStep stepping i series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.bootstrapFixedStep stepping i series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + stepping + + : + TimeSpan + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + i + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + series + + : + TimeSeries<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Removing a step takes account of leap years. + NB Never removes the original start point. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + stepping + + : + TimeSpan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + i + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.bound startDate endDate series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.bound startDate endDate series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'a> option + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Bound a time series inclusively +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + startDate + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + endDate + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'a> option +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.checkMoreThanEqualTo n seq + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.checkMoreThanEqualTo n seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + n + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + seq + + : + 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + 'a option + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + n + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + seq + + : + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + 'a option +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.commonTimeline series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.commonTimeline series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSpan[] option + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              **Description**
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Determines if multiple time series have the same temporal extent and time steps.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +**Output Type**
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +  * A `TimeSpan [] option` containing the common timeline, or `None` if there is no common timeline.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> list +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSpan[] option +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.dates series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.dates series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + DateTime seq + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Time points of sampling within the time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + DateTime seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.endDate series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.endDate series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + DateTime + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Date of the last observation within the time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.epochs series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.epochs series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSpan[] + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + The time intervals - or *epochs* - that form the time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSpan[] +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.findExact time series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.findExact time series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + Observation<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Find an observation by its exact time of occurrence. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + time + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + Observation<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.fromObservations dataset + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.fromObservations dataset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Arrange existing observations as a bristlecone `TimeSeries`. + Observations become ordered and indexed by time. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + dataset + + : + Observation<'a> seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.fromSeq t1 resolution data + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.fromSeq t1 resolution data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Create a time series from a sequence of existing data, where each + observation is equally spaced in time. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + t1 + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + resolution + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + data + + : + 'a seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.generalise desiredResolution upscaleFunction series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.generalise desiredResolution upscaleFunction series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'a> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Reduces the temporal resolution of `series`. + The time series must be able to be split exactly into the lower resolution. For example, + when upscaling from one to three years, the time series must be a multiple of three years. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + desiredResolution + + : + FixedTemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + upscaleFunction + + : + Observation<'a> seq -> 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.interpolate series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.interpolate series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + series + + : + TimeSeries<float option> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<float> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Interpolates missing values in a time series, where missing values + are represented as an `Option` type. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<float option> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<float> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.map f series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.map f series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'b> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Map a function to each value in the time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + f + + : + 'a * TimeSpan -> 'b +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'b> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.resolution series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.resolution series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TemporalResolution + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Calculates the temporal resolution of a time series +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TemporalResolution +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.toObservations series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.toObservations series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + Observation<'a> seq + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Turn a time series into a sequence of observations +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + Observation<'a> seq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.trimEnd endDate series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.trimEnd endDate series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'a> option + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Remove all time points that occur after the desired end date. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + endDate + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'a> option +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + TimeSeries.trimStart startDate series + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Full Usage: + TimeSeries.trimStart startDate series +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + TimeSeries<'a> option + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Remove all time points that occur before the desired start date. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + startDate + + : + DateTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + series + + : + TimeSeries<'a> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + Returns: + + TimeSeries<'a> option +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-time.html b/reference/bristlecone-time.html new file mode 100644 index 0000000..a321227 --- /dev/null +++ b/reference/bristlecone-time.html @@ -0,0 +1,603 @@ + + + + + + + + + + + + + + + + + + Time (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Time Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Types and nested modules +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + Bootstrap + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Contains functions for bootstrapping time series. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + GrowthSeries + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + Resolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeExtensions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Contains F#-friendly extension methods for .NET time types. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeFrame + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + A `TimeFrame` contains multiple time-series that use the same + temporal index. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeIndex + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeSeries + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + FixedTemporalResolution + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + TimeSeries<'T> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-workflow-orchestration-orchestrationagent.html b/reference/bristlecone-workflow-orchestration-orchestrationagent.html new file mode 100644 index 0000000..95d88c4 --- /dev/null +++ b/reference/bristlecone-workflow-orchestration-orchestrationagent.html @@ -0,0 +1,575 @@ + + + + + + + + + + + + + + + + + + OrchestrationAgent (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Orchestration.OrchestrationAgent Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + The `OrchestrationAgent` queues work items of the type `Async`, which + are run in parallel up to a total of `maxSimultaneous` at one time. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Constructors +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Constructor + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + OrchestrationAgent(writeOut, maxSimultaneous, retainResults) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + OrchestrationAgent(writeOut, maxSimultaneous, retainResults) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + writeOut + + : + LogEvent -> unit + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + maxSimultaneous + + : + int + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + retainResults + + : + bool + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + OrchestrationAgent + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + writeOut + + : + LogEvent -> unit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + maxSimultaneous + + : + int +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + retainResults + + : + bool +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + OrchestrationAgent +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Instance members +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Instance member + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + this.Post + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + this.Post +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + msg + + : + OrchestrationMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + this.TryGetResult + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Full Usage: + this.TryGetResult +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + EstimationResult option + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + Returns: + + EstimationResult option +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-workflow-orchestration-orchestrationmessage.html b/reference/bristlecone-workflow-orchestration-orchestrationmessage.html new file mode 100644 index 0000000..0bb7864 --- /dev/null +++ b/reference/bristlecone-workflow-orchestration-orchestrationmessage.html @@ -0,0 +1,598 @@ + + + + + + + + + + + + + + + + + + OrchestrationMessage (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Orchestration.OrchestrationMessage Type +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Union cases +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Union case + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + Finished EstimationResult + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + Finished EstimationResult +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Item + + : + EstimationResult +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + StartDependentWorkPackages Async<EstimationResult> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + StartDependentWorkPackages Async<EstimationResult> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Item + + : + Async<EstimationResult> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + StartWorkPackage Async<EstimationResult> + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + StartWorkPackage Async<EstimationResult> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Item + + : + Async<EstimationResult> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + WorkCancelled + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + WorkCancelled +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + WorkFailed exn + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Full Usage: + WorkFailed exn +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + Item + + : + exn + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + Item + + : + exn +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-workflow-orchestration.html b/reference/bristlecone-workflow-orchestration.html new file mode 100644 index 0000000..b1f8a91 --- /dev/null +++ b/reference/bristlecone-workflow-orchestration.html @@ -0,0 +1,519 @@ + + + + + + + + + + + + + + + + + + Orchestration (bristlecone) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Orchestration Module +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Queue functions to manage many work packages in parallel. + [ Inspired by Tom Petricek: http://fssnip.net/nX ] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Types +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Type + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + OrchestrationAgent + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + The `OrchestrationAgent` queues work items of the type `Async`, which + are run in parallel up to a total of `maxSimultaneous` at one time. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + OrchestrationMessage + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions and values +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Function or value + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + Orchestration.print writeOut s + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Full Usage: + Orchestration.print writeOut s +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Parameters: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + writeOut + + : + LogEvent -> 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + s + + : + string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + 'a + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + writeOut + + : + LogEvent -> 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + s + + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + Returns: + + 'a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone-workflow.html b/reference/bristlecone-workflow.html new file mode 100644 index 0000000..3f4c074 --- /dev/null +++ b/reference/bristlecone-workflow.html @@ -0,0 +1,365 @@ + + + + + + + + + + + + + + + + + + Bristlecone.Workflow | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Bristlecone.Workflow Namespace +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Modules + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + Orchestration + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Queue functions to manage many work packages in parallel. + [ Inspired by Tom Petricek: http://fssnip.net/nX ] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/bristlecone.html b/reference/bristlecone.html new file mode 100644 index 0000000..8aacc82 --- /dev/null +++ b/reference/bristlecone.html @@ -0,0 +1,961 @@ + + + + + + + + + + + + + + + + + + Bristlecone | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Bristlecone Namespace +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Type/Module + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Bristlecone (Module) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Bristlecone (Module) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Conditioning + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Diagnostics + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diagnostic techniques for determining the suitability of
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + results obtained with Bristlecone.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + EstimationEngine + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Language + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + An F# Domain Specific Language (DSL) for scripting with + Bristlecone. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + List + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + ListExtensions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Map + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + ModelSelection + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + ModelSystem + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Represents an ordinary differential equation model system and + its likelihood as as objective function that may be optimised. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Objective + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Configures a single function that represents a model and its likelihood + when fit to time-series data. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Parameter + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + PositiveInt (Module) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + PositiveInt (Type) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + RealTimeSpan (Module) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + RealTimeSpan (Type) + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Result + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Seq + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + ShortCode + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Solver + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Helper functions for the creation of `Solver` functions, which apply time-series models + to time-series data (when using Bristlecone time-series types). +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Test + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + Time + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/index.html b/reference/index.html new file mode 100644 index 0000000..384014b --- /dev/null +++ b/reference/index.html @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + + bristlecone (API Reference) | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + API Reference +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Available Namespaces: +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Namespace + + Description +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Data + + + Contains functions that enable loading and saving of core Bristlecone types to file storage. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Dendro + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Integration + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Logging + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.ModelLibrary + + + Pre-built model parts for use in Bristlecone +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Optimisation + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Optimisation.ConfidenceInterval + + + Contains functions for calculating confidence intervals on model fits. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Statistics + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + Bristlecone.Workflow + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/workflow.fsx b/workflow.fsx new file mode 100644 index 0000000..3b4ba08 --- /dev/null +++ b/workflow.fsx @@ -0,0 +1,117 @@ +(** + +*) +#r "nuget: Bristlecone,2.0.0-alpha2" +(** +# Techniques: Ensembles and Parallel Processing + +Model-fitting and model-selection usually requires running +multiple model runs, for multiple hypotheses, and sometimes +for multiple datasets, resulting in hundreds of individual +model runs. + +Bristlecone includes capabilities to orchestrate the parallel +running of such complex analyses within the +`Bristlecone.Workflow` namespace. Using Bristlecone's +`OrchestrationAgent`, you can queue jobs to run when processor +cores are available. + +### Work Packages + +To run your analyses in parallel, you must wrap up each analysis +as a **work package**. A **work package** is simply an async computation +that returns an estimation result, with the function signature +`Async`. A simple example function to +setup work packages for a number of datasets, hypotheses, and individuals +is given below: + +*) +open Bristlecone + +let replicates = 3 // number of replications per analysis +let endCondition = Optimisation.EndConditions.afterIteration 100000 + +let workPackages datasets hypotheses engine = + seq { + for d in datasets do + for h in [ 1 .. hypotheses |> List.length ] do + for _ in [ 1 .. replicates ] do + yield async { + return Bristlecone.fit + engine + endCondition + d + hypotheses.[h-1] + } + } +(** +You can perform any additional steps within each work package. A common +approach is to save each model result to disk (i.e., using functions from +the `Bristlecone.Data` namespace) within the async +block in the above code, so that results are available as soon as +they are complete. + +When the `EstimationEngine`, datasets, and hypotheses are +applied to this function, the resultant `seq>` +can be passed to an orchestration agent. + +### Orchestration Agent + +An orchestration agent manages the running of work packages depending on +your local computer's resources. You can access these features through the following +namespace: + +*) +open Bristlecone.Workflow +(** +There are three arguments required to create an `OrchestrationAgent`: + +* A **logger** (`LogEvent -> unit`), which consumes log messages from all threads. You +must ensure that the logger is safe to use from multiple processes. Bristlecone +includes some loggers that are thread-safe. In addition, the `Bristlecone.Charts.R` +NuGet package contains interoperability with R to produce real-time traces of the movement +of each analysis through parameter space; this is very useful for example +with MCMC optimisation techniques to compare chains. + + +* The **number of processes to run in parallel**. The recommended approach is to set +this to `System.Environment.ProcessorCount`, which represents the number of cores +available on your system. + + +* Whether to **cache results in the resultant object**. This increases memory usage, but allows +post-hoc analysis of the results. A common approach is to set this to `false` but save each +result to disk within the work package itself (see above). The results +can then be re-loaded at a later date for diagnostics and further analysis. + + +First, let's use one of Bristlecone's built-in loggers to print the progress of each +work package: + +*) +let logger = Logging.Console.logger 1000 +(** +This logger will print the current point in parameter space each thousand +iteration, for each chain (along with process IDs). Next, let's create and setup +the orchestration agent: + +*) +let orchestrator = Orchestration.OrchestrationAgent(logger, System.Environment.ProcessorCount, false) + +// fun datasets hypotheses engine -> + +// // Orchestrate the analyses +// let work = workPackages datasets hypotheses engine +// let run() = +// work +// |> Seq.iter ( +// Orchestration.OrchestrationMessage.StartWorkPackage +// >> orchestrator.Post) + +// run() +(** +If the above code is supplied with datasets, hypotheses, and an +`EstimationEngine`, it will schedule, queue and run the jobs until complete. + +*) + diff --git a/workflow.html b/workflow.html new file mode 100644 index 0000000..7e3ffa3 --- /dev/null +++ b/workflow.html @@ -0,0 +1,521 @@ + + + + + + + + + + + + + + + + + + Ensembles and Parallel Processing | bristlecone + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Techniques: Ensembles and Parallel Processing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Model-fitting and model-selection usually requires running +multiple model runs, for multiple hypotheses, and sometimes +for multiple datasets, resulting in hundreds of individual +model runs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bristlecone includes capabilities to orchestrate the parallel +running of such complex analyses within the +Bristlecone.Workflow namespace. Using Bristlecone's +OrchestrationAgent, you can queue jobs to run when processor +cores are available.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Packages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To run your analyses in parallel, you must wrap up each analysis +as a work package. A work package is simply an async computation +that returns an estimation result, with the function signature +Async<ModelSystem.EstimationResult>. A simple example function to +setup work packages for a number of datasets, hypotheses, and individuals +is given below:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              open Bristlecone
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +let replicates = 3 // number of replications per analysis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +let endCondition = Optimisation.EndConditions.afterIteration 100000
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +let workPackages datasets hypotheses engine =
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    seq {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        for d in datasets do
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            for h in [ 1 .. hypotheses |> List.length ] do
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                for _ in [ 1 .. replicates ] do
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    yield async {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                        return Bristlecone.fit 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                                engine 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                                endCondition 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                                d
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                                hypotheses.[h-1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You can perform any additional steps within each work package. A common +approach is to save each model result to disk (i.e., using functions from +the Bristlecone.Data namespace) within the async +block in the above code, so that results are available as soon as +they are complete.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When the EstimationEngine, datasets, and hypotheses are +applied to this function, the resultant seq<Async<EstimationResult>> +can be passed to an orchestration agent.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Orchestration Agent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An orchestration agent manages the running of work packages depending on +your local computer's resources. You can access these features through the following +namespace:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              open Bristlecone.Workflow
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There are three arguments required to create an OrchestrationAgent:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A logger (LogEvent -> unit), which consumes log messages from all threads. You +must ensure that the logger is safe to use from multiple processes. Bristlecone +includes some loggers that are thread-safe. In addition, the Bristlecone.Charts.R +NuGet package contains interoperability with R to produce real-time traces of the movement +of each analysis through parameter space; this is very useful for example +with MCMC optimisation techniques to compare chains.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The number of processes to run in parallel. The recommended approach is to set +this to System.Environment.ProcessorCount, which represents the number of cores +available on your system.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whether to cache results in the resultant object. This increases memory usage, but allows +post-hoc analysis of the results. A common approach is to set this to false but save each +result to disk within the work package itself (see above). The results +can then be re-loaded at a later date for diagnostics and further analysis.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              First, let's use one of Bristlecone's built-in loggers to print the progress of each +work package:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              let logger = Logging.Console.logger 1000
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This logger will print the current point in parameter space each thousand +iteration, for each chain (along with process IDs). Next, let's create and setup +the orchestration agent:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              let orchestrator = Orchestration.OrchestrationAgent(logger, System.Environment.ProcessorCount, false)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +// fun datasets hypotheses engine ->
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//     // Orchestrate the analyses
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//     let work = workPackages datasets hypotheses engine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//     let run() = 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//         work 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//         |> Seq.iter (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//             Orchestration.OrchestrationMessage.StartWorkPackage 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//             >> orchestrator.Post)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//     run()
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If the above code is supplied with datasets, hypotheses, and an +EstimationEngine, it will schedule, queue and run the jobs until complete.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Multiple items
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              module Bristlecone + +from Bristlecone

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              --------------------
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              namespace Bristlecone
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val replicates: int
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val endCondition: EstimationEngine.EndCondition<float>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              namespace Bristlecone.Optimisation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              module EndConditions + +from Bristlecone.Optimisation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val afterIteration: iteration: int -> EstimationEngine.Solution<float> list -> currentIteration: int -> bool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary> + End the optimisation procedure when a minimum number of iterations is exceeded. +</summary>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val workPackages: datasets: CodedMap<Time.TimeSeries<float>> seq -> hypotheses: ModelSystem.ModelSystem list -> engine: EstimationEngine.EstimationEngine<float,float> -> Async<Result<ModelSystem.EstimationResult,string>> seq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val datasets: CodedMap<Time.TimeSeries<float>> seq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val hypotheses: ModelSystem.ModelSystem list
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val engine: EstimationEngine.EstimationEngine<float,float>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Multiple items
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val seq: sequence: 'T seq -> 'T seq

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              --------------------
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type 'T seq = System.Collections.Generic.IEnumerable<'T>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val d: CodedMap<Time.TimeSeries<float>>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val h: int
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Multiple items
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              module List + +from Bristlecone

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              --------------------
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              module List + +from Microsoft.FSharp.Collections

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              --------------------
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type List<'T> = + | op_Nil + | op_ColonColon of Head: 'T * Tail: 'T list + interface IReadOnlyList<'T> + interface IReadOnlyCollection<'T> + interface IEnumerable + interface IEnumerable<'T> + member GetReverseIndex: rank: int * offset: int -> int + member GetSlice: startIndex: int option * endIndex: int option -> 'T list + static member Cons: head: 'T * tail: 'T list -> 'T list + member Head: 'T + member IsEmpty: bool + member Item: index: int -> 'T with get + ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val length: list: 'T list -> int
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val async: AsyncBuilder
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val fit: engine: EstimationEngine.EstimationEngine<float,float> -> endCondition: EstimationEngine.EndCondition<float> -> timeSeriesData: CodedMap<Time.TimeSeries<float>> -> model: ModelSystem.ModelSystem -> Result<ModelSystem.EstimationResult,string>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary> + Fit a time-series model to data. + + Please note: it is strongly recommended that you test that the given `EstimationEngine` + can correctly identify known parameters for your model. Refer to the `Bristlecone.testModel` + function, which can be used to generate known data and complete this process. + </summary>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <param name="engine">The engine encapsulates all settings that form part of the estimation + method. Importantly, this includes the random number generator used for all stages + of the analysis; if this is set using a fixed seed, the result will be reproducable.</param>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <param name="endCondition">You must specify a stopping condition, after which + the optimisation process will cease. Bristlecone includes built-in end conditions + in the `Bristlecone.Optimisation.EndConditions` module.</param>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <param name="timeSeriesData"></param>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <param name="model"></param>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <returns></returns>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              namespace Bristlecone.Workflow
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val logger: (Logging.LogEvent -> unit)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              namespace Bristlecone.Logging
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              module Console + +from Bristlecone.Logging
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary> + Simple logger to console that prints line-by-line progress and events. +</summary>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val logger: nIteration: int -> (Logging.LogEvent -> unit)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary> + A simple console logger. + `nIteration` specifies the number of iterations after which to log + the current likelihood and parameter values. +</summary>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              val orchestrator: Orchestration.OrchestrationAgent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              module Orchestration + +from Bristlecone.Workflow
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary> + Queue functions to manage many work packages in parallel. + [ Inspired by Tom Petricek: http://fssnip.net/nX ] +</summary>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Multiple items
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type OrchestrationAgent = + new: writeOut: (LogEvent -> unit) * maxSimultaneous: int * retainResults: bool -> OrchestrationAgent + member Post: msg: OrchestrationMessage -> unit + member TryGetResult: unit -> EstimationResult option
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary> + The `OrchestrationAgent` queues work items of the type `Async&lt;EstimationResult&gt;`, which + are run in parallel up to a total of `maxSimultaneous` at one time. +</summary>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              --------------------
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              new: writeOut: (Logging.LogEvent -> unit) * maxSimultaneous: int * retainResults: bool -> Orchestration.OrchestrationAgent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              namespace System
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type Environment = + static member Exit: exitCode: int -> unit + static member ExpandEnvironmentVariables: name: string -> string + static member FailFast: message: string -> unit + 1 overload + static member GetCommandLineArgs: unit -> string array + static member GetEnvironmentVariable: variable: string -> string + 1 overload + static member GetEnvironmentVariables: unit -> IDictionary + 1 overload + static member GetFolderPath: folder: SpecialFolder -> string + 1 overload + static member GetLogicalDrives: unit -> string array + static member SetEnvironmentVariable: variable: string * value: string -> unit + 1 overload + static member CommandLine: string + ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary>Provides information about, and means to manipulate, the current environment and platform. This class cannot be inherited.</summary>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property System.Environment.ProcessorCount: int with get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <summary>Gets the number of processors available to the current process.</summary>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <returns>The 32-bit signed integer that specifies the number of processors that are available.</returns>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/workflow.ipynb b/workflow.ipynb new file mode 100644 index 0000000..b8cd48c --- /dev/null +++ b/workflow.ipynb @@ -0,0 +1,259 @@ + +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": null, "outputs": [], + "source": [ + "#r \"nuget: Bristlecone,2.0.0-alpha2\"\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "# Techniques: Ensembles and Parallel Processing\n", + "\n", + "Model-fitting and model-selection usually requires running\n", + "multiple model runs, for multiple hypotheses, and sometimes\n", + "for multiple datasets, resulting in hundreds of individual\n", + "model runs.\n", + "\n", + "Bristlecone includes capabilities to orchestrate the parallel\n", + "running of such complex analyses within the\n", + "`Bristlecone.Workflow` namespace. Using Bristlecone\u0027s\n", + "`OrchestrationAgent`, you can queue jobs to run when processor\n", + "cores are available.\n", + "\n", + "### Work Packages\n", + "\n", + "To run your analyses in parallel, you must wrap up each analysis\n", + "as a **work package**. A **work package** is simply an async computation\n", + "that returns an estimation result, with the function signature\n", + "`Async\u003cModelSystem.EstimationResult\u003e`. A simple example function to\n", + "setup work packages for a number of datasets, hypotheses, and individuals\n", + "is given below:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 2, "outputs": [], + "source": [ + "open Bristlecone\n", + "\n", + "let replicates = 3 // number of replications per analysis\n", + "let endCondition = Optimisation.EndConditions.afterIteration 100000\n", + "\n", + "let workPackages datasets hypotheses engine =\n", + " seq {\n", + " for d in datasets do\n", + " for h in [ 1 .. hypotheses |\u003e List.length ] do\n", + " for _ in [ 1 .. replicates ] do\n", + " yield async {\n", + " return Bristlecone.fit \n", + " engine \n", + " endCondition \n", + " d\n", + " hypotheses.[h-1]\n", + " }\n", + " }\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "You can perform any additional steps within each work package. A common\n", + "approach is to save each model result to disk (i.e., using functions from\n", + "the `Bristlecone.Data` namespace) within the async\n", + "block in the above code, so that results are available as soon as\n", + "they are complete.\n", + "\n", + "When the `EstimationEngine`, datasets, and hypotheses are\n", + "applied to this function, the resultant `seq\u003cAsync\u003cEstimationResult\u003e\u003e`\n", + "can be passed to an orchestration agent.\n", + "\n", + "### Orchestration Agent\n", + "\n", + "An orchestration agent manages the running of work packages depending on\n", + "your local computer\u0027s resources. You can access these features through the following\n", + "namespace:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 3, "outputs": [], + "source": [ + "open Bristlecone.Workflow\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "There are three arguments required to create an `OrchestrationAgent`:\n", + "\n", + "* A **logger** (`LogEvent -\u003e unit`), which consumes log messages from all threads. You\n", + "must ensure that the logger is safe to use from multiple processes. Bristlecone\n", + "includes some loggers that are thread-safe. In addition, the `Bristlecone.Charts.R`\n", + "NuGet package contains interoperability with R to produce real-time traces of the movement\n", + "of each analysis through parameter space; this is very useful for example\n", + "with MCMC optimisation techniques to compare chains.\n", + " \n", + "\n", + "* The **number of processes to run in parallel**. The recommended approach is to set\n", + "this to `System.Environment.ProcessorCount`, which represents the number of cores\n", + "available on your system.\n", + " \n", + "\n", + "* Whether to **cache results in the resultant object**. This increases memory usage, but allows\n", + "post-hoc analysis of the results. A common approach is to set this to `false` but save each\n", + "result to disk within the work package itself (see above). The results\n", + "can then be re-loaded at a later date for diagnostics and further analysis.\n", + " \n", + "\n", + "First, let\u0027s use one of Bristlecone\u0027s built-in loggers to print the progress of each\n", + "work package:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 4, "outputs": [], + "source": [ + "let logger = Logging.Console.logger 1000\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "This logger will print the current point in parameter space each thousand\n", + "iteration, for each chain (along with process IDs). Next, let\u0027s create and setup\n", + "the orchestration agent:\n", + "\n" + ] + } +, + { + "cell_type": "code", + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + } + }, + "execution_count": 5, "outputs": [], + "source": [ + "let orchestrator = Orchestration.OrchestrationAgent(logger, System.Environment.ProcessorCount, false)\n", + "\n", + "// fun datasets hypotheses engine -\u003e\n", + "\n", + "// // Orchestrate the analyses\n", + "// let work = workPackages datasets hypotheses engine\n", + "// let run() = \n", + "// work \n", + "// |\u003e Seq.iter (\n", + "// Orchestration.OrchestrationMessage.StartWorkPackage \n", + "// \u003e\u003e orchestrator.Post)\n", + "\n", + "// run()\n" + ] + } +, + { + "cell_type": "markdown", + "metadata": {}, + + "source": [ + "If the above code is supplied with datasets, hypotheses, and an\n", + "`EstimationEngine`, it will schedule, queue and run the jobs until complete.\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".NET (F#)", + "language": "F#", + "name": ".net-fsharp" + }, + "language_info": { + "file_extension": ".fs", + "mimetype": "text/x-fsharp", + "name": "polyglot-notebook", + "pygments_lexer": "fsharp" + }, + "polyglot_notebook": { + "kernelInfo": { + "defaultKernelName": "fsharp", + "items": [ + { + "aliases": [], + "languageName": "fsharp", + "name": "fsharp" + } + ] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} +